likec4 1.46.4 → 1.48.0
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/LICENSE +1 -1
- package/__app__/src/ProjectsOverview.js +16 -0
- package/__app__/src/const.js +0 -25
- package/__app__/src/fonts.css +1 -1
- package/__app__/src/likec4.js +3324 -1644
- package/__app__/src/main.js +27 -2011
- package/__app__/src/routes/index.js +400 -0
- package/__app__/src/routes/projects.js +1255 -0
- package/__app__/src/routes/single.js +320 -0
- package/__app__/src/style.css +1 -1
- package/__app__/src/vendors.js +15883 -9620
- package/__app__/src/webcomponent.js +1 -1
- package/config/schema.json +88 -84
- package/dist/_chunks/LikeC4.d.mts +121 -0
- package/dist/_chunks/LikeC4.mjs +202 -0
- package/dist/_chunks/config-app.prod.d.mts +18 -0
- package/dist/_chunks/config-app.prod.mjs +188 -0
- package/dist/_chunks/config-webcomponent.prod.mjs +71 -0
- package/dist/_chunks/define-config.mjs +409 -0
- package/dist/_chunks/index.d.mts +489 -0
- package/dist/_chunks/index2.d.mts +3317 -0
- package/dist/_chunks/index3.d.mts +60 -0
- package/dist/_chunks/index4.d.mts +1 -0
- package/dist/_chunks/libs/@chevrotain/gast.mjs +3969 -0
- package/dist/_chunks/libs/@chevrotain/regexp-to-ast.mjs +785 -0
- package/dist/_chunks/libs/@chevrotain/utils.mjs +37 -0
- package/dist/_chunks/libs/@hono/node-server.mjs +436 -0
- package/dist/_chunks/libs/@logtape/logtape.mjs +1354 -0
- package/dist/_chunks/libs/@lume/kiwi.mjs +1355 -0
- package/dist/_chunks/libs/@modelcontextprotocol/sdk.d.mts +8625 -0
- package/dist/_chunks/libs/@modelcontextprotocol/sdk.mjs +25105 -0
- package/dist/_chunks/libs/@msgpack/msgpack.mjs +1503 -0
- package/dist/_chunks/libs/@nanostores/react.d.mts +258 -0
- package/dist/_chunks/libs/@nanostores/react.mjs +30 -0
- package/dist/_chunks/libs/@smithy/is-array-buffer.mjs +10 -0
- package/dist/_chunks/libs/@smithy/util-base64.mjs +100 -0
- package/dist/_chunks/libs/ajv.mjs +777 -0
- package/dist/_chunks/libs/atomically.mjs +362 -0
- package/dist/_chunks/libs/birpc.mjs +201 -0
- package/dist/_chunks/libs/chevrotain-allstar.mjs +850 -0
- package/dist/_chunks/libs/chevrotain.mjs +6232 -0
- package/dist/_chunks/libs/conf.mjs +2258 -0
- package/dist/_chunks/libs/defu.mjs +42 -0
- package/dist/_chunks/libs/esm-env.mjs +5 -0
- package/dist/_chunks/libs/eventemitter3.mjs +243 -0
- package/dist/_chunks/libs/fast-equals.mjs +446 -0
- package/dist/_chunks/libs/find-up-simple.mjs +24 -0
- package/dist/_chunks/libs/get-port.mjs +107 -0
- package/dist/_chunks/libs/hono.mjs +1829 -0
- package/dist/_chunks/libs/is-docker.mjs +26 -0
- package/dist/_chunks/libs/is-error-instance.mjs +26 -0
- package/dist/_chunks/libs/is-inside-container.mjs +20 -0
- package/dist/_chunks/libs/is-plain-obj.mjs +9 -0
- package/dist/_chunks/libs/isexe.mjs +127 -0
- package/dist/_chunks/libs/json5.mjs +959 -0
- package/dist/_chunks/libs/khroma.mjs +605 -0
- package/dist/_chunks/libs/ky.mjs +808 -0
- package/dist/_chunks/libs/langium.d.mts +12063 -0
- package/dist/_chunks/libs/langium.mjs +20351 -0
- package/dist/_chunks/libs/merge-error-cause.mjs +746 -0
- package/dist/_chunks/libs/nanoid.mjs +29 -0
- package/dist/_chunks/libs/nanostores.d.mts +63 -0
- package/dist/_chunks/libs/nanostores.mjs +198 -0
- package/dist/_chunks/libs/p-limit.mjs +120 -0
- package/dist/_chunks/libs/p-queue.mjs +449 -0
- package/dist/_chunks/libs/package-manager-detector.mjs +559 -0
- package/dist/_chunks/libs/package-up.mjs +10 -0
- package/dist/_chunks/libs/parse-ms.mjs +36 -0
- package/dist/_chunks/libs/picomatch.mjs +1673 -0
- package/dist/_chunks/libs/pretty-ms.mjs +80 -0
- package/dist/_chunks/libs/remeda.mjs +690 -0
- package/dist/_chunks/libs/safe-stringify.mjs +21 -0
- package/dist/_chunks/libs/strip-indent.mjs +15 -0
- package/dist/_chunks/libs/tinyrainbow.mjs +88 -0
- package/dist/_chunks/libs/ts-graphviz.d.mts +10 -0
- package/dist/_chunks/libs/ts-graphviz.mjs +725 -0
- package/dist/_chunks/libs/ufo.mjs +240 -0
- package/dist/_chunks/libs/which.mjs +84 -0
- package/dist/_chunks/libs/word-wrap.mjs +43 -0
- package/dist/_chunks/model.mjs +12 -0
- package/dist/_chunks/module.d.mts +71 -0
- package/dist/_chunks/module.mjs +18657 -0
- package/dist/_chunks/plugin.mjs +996 -0
- package/dist/_chunks/rolldown-runtime.mjs +48 -0
- package/dist/_chunks/sequence-view.mjs +575 -0
- package/dist/_chunks/vite-build.mjs +69 -0
- package/dist/_chunks/vite-dev.mjs +79 -0
- package/dist/_chunks/vite-preview.mjs +27 -0
- package/dist/cli/index.d.mts +1 -2
- package/dist/cli/index.mjs +1849 -432
- package/dist/config/index.d.mts +3 -6
- package/dist/config/index.mjs +6 -1
- package/dist/index.d.mts +10 -160
- package/dist/index.mjs +21 -1
- package/dist/language/module.d.mts +5 -0
- package/dist/language/module.mjs +20 -0
- package/dist/model/builder.d.mts +1 -1
- package/dist/model/builder.mjs +3 -1
- package/dist/model/index.d.mts +4 -55
- package/dist/model/index.mjs +5 -2
- package/dist/vite/vite-build.d.mts +26 -0
- package/dist/vite/vite-build.mjs +27 -0
- package/dist/vite/vite-dev.d.mts +34 -0
- package/dist/vite/vite-dev.mjs +29 -0
- package/dist/vite/vite-preview.d.mts +20 -0
- package/dist/vite/vite-preview.mjs +26 -0
- package/dist/vite-plugin/index.d.mts +59 -59
- package/dist/vite-plugin/index.mjs +22 -1
- package/dist/vite-plugin/internal.d.mts +31 -403
- package/dist/vite-plugin/internal.mjs +68 -7
- package/package.json +50 -58
- package/react/index.d.ts +174 -661
- package/react/index.js +6971 -5462
- package/react/package.json +2 -0
- package/vite-plugin/internal/package.json +4 -0
- package/vite-plugin-modules.d.ts +37 -93
- package/dist/shared/likec4.6kvTI22o.d.mts +0 -4069
- package/dist/shared/likec4.BJupup6Q.mjs +0 -4211
- package/dist/shared/likec4.CB2-Uaub.mjs +0 -47
- package/dist/shared/likec4.DASl7M77.mjs +0 -183
- package/dist/shared/likec4.DOUP9ptn.mjs +0 -1
- package/dist/shared/likec4.DO_7oUns.mjs +0 -2
- package/dist/shared/likec4.DobqFzmV.d.mts +0 -30689
- package/dist/shared/likec4.DwZEQeLv.mjs +0 -272
- package/icons/all/package.json +0 -4
- package/icons/all.d.ts +0 -5241
- package/icons/all.js +0 -10413
- package/icons/aws/activate.js +0 -1
- package/icons/aws/alexa-for-business.js +0 -1
- package/icons/aws/amplify.js +0 -1
- package/icons/aws/apache-mxnet-on-aws.js +0 -1
- package/icons/aws/api-gateway.js +0 -1
- package/icons/aws/app-config.js +0 -1
- package/icons/aws/app-flow.js +0 -1
- package/icons/aws/app-mesh.js +0 -1
- package/icons/aws/app-runner.js +0 -1
- package/icons/aws/app-stream.js +0 -1
- package/icons/aws/app-sync.js +0 -1
- package/icons/aws/application-auto-scaling.js +0 -1
- package/icons/aws/application-composer.js +0 -1
- package/icons/aws/application-cost-profiler.js +0 -1
- package/icons/aws/application-discovery-service.js +0 -1
- package/icons/aws/application-migration-service.js +0 -1
- package/icons/aws/artifact.js +0 -1
- package/icons/aws/athena.js +0 -1
- package/icons/aws/audit-manager.js +0 -1
- package/icons/aws/augmented-ai-a2i.js +0 -1
- package/icons/aws/aurora.js +0 -1
- package/icons/aws/auto-scaling.js +0 -1
- package/icons/aws/backint-agent.js +0 -1
- package/icons/aws/backup.js +0 -1
- package/icons/aws/batch.js +0 -1
- package/icons/aws/billing-conductor.js +0 -1
- package/icons/aws/bottlerocket.js +0 -1
- package/icons/aws/braket.js +0 -1
- package/icons/aws/budgets.js +0 -1
- package/icons/aws/certificate-manager.js +0 -1
- package/icons/aws/chatbot.js +0 -1
- package/icons/aws/chime-sdk.js +0 -1
- package/icons/aws/chime-voice-connector.js +0 -1
- package/icons/aws/chime.js +0 -1
- package/icons/aws/clean-rooms.js +0 -1
- package/icons/aws/client-vpn.js +0 -1
- package/icons/aws/cloud-control-api.js +0 -1
- package/icons/aws/cloud-development-kit.js +0 -1
- package/icons/aws/cloud-directory.js +0 -1
- package/icons/aws/cloud-formation.js +0 -1
- package/icons/aws/cloud-front.js +0 -1
- package/icons/aws/cloud-hsm.js +0 -1
- package/icons/aws/cloud-map.js +0 -1
- package/icons/aws/cloud-search.js +0 -1
- package/icons/aws/cloud-shell.js +0 -1
- package/icons/aws/cloud-trail.js +0 -1
- package/icons/aws/cloud-wan.js +0 -1
- package/icons/aws/cloud-watch.js +0 -1
- package/icons/aws/cloud9.js +0 -1
- package/icons/aws/code-artifact.js +0 -1
- package/icons/aws/code-build.js +0 -1
- package/icons/aws/code-catalyst.js +0 -1
- package/icons/aws/code-commit.js +0 -1
- package/icons/aws/code-deploy.js +0 -1
- package/icons/aws/code-guru.js +0 -1
- package/icons/aws/code-pipeline.js +0 -1
- package/icons/aws/code-star.js +0 -1
- package/icons/aws/code-whisperer.js +0 -1
- package/icons/aws/cognito.js +0 -1
- package/icons/aws/command-line-interface.js +0 -1
- package/icons/aws/comprehend-medical.js +0 -1
- package/icons/aws/comprehend.js +0 -1
- package/icons/aws/compute-optimizer.js +0 -1
- package/icons/aws/config.js +0 -1
- package/icons/aws/connect.js +0 -1
- package/icons/aws/console-mobile-application.js +0 -1
- package/icons/aws/control-tower.js +0 -1
- package/icons/aws/corretto.js +0 -1
- package/icons/aws/cost-and-usage-report.js +0 -1
- package/icons/aws/cost-explorer.js +0 -1
- package/icons/aws/data-exchange.js +0 -1
- package/icons/aws/data-pipeline.js +0 -1
- package/icons/aws/data-sync.js +0 -1
- package/icons/aws/data-zone.js +0 -1
- package/icons/aws/database-migration-service.js +0 -1
- package/icons/aws/deep-composer.js +0 -1
- package/icons/aws/deep-learning-amis.js +0 -1
- package/icons/aws/deep-learning-containers.js +0 -1
- package/icons/aws/deep-lens.js +0 -1
- package/icons/aws/deep-racer.js +0 -1
- package/icons/aws/detective.js +0 -1
- package/icons/aws/dev-ops-guru.js +0 -1
- package/icons/aws/device-farm.js +0 -1
- package/icons/aws/direct-connect.js +0 -1
- package/icons/aws/directory-service.js +0 -1
- package/icons/aws/distro-for-open-telemetry.js +0 -1
- package/icons/aws/document-db.js +0 -1
- package/icons/aws/dynamo-db.js +0 -1
- package/icons/aws/ec2-auto-scaling.js +0 -1
- package/icons/aws/ec2-image-builder.js +0 -1
- package/icons/aws/ec2.js +0 -1
- package/icons/aws/ecs-anywhere.js +0 -1
- package/icons/aws/efs.js +0 -1
- package/icons/aws/eks-anywhere.js +0 -1
- package/icons/aws/eks-cloud.js +0 -1
- package/icons/aws/eks-distro.js +0 -1
- package/icons/aws/elasti-cache.js +0 -1
- package/icons/aws/elastic-beanstalk.js +0 -1
- package/icons/aws/elastic-block-store.js +0 -1
- package/icons/aws/elastic-container-registry.js +0 -1
- package/icons/aws/elastic-container-service.js +0 -1
- package/icons/aws/elastic-disaster-recovery.js +0 -1
- package/icons/aws/elastic-fabric-adapter.js +0 -1
- package/icons/aws/elastic-inference.js +0 -1
- package/icons/aws/elastic-kubernetes-service.js +0 -1
- package/icons/aws/elastic-load-balancing.js +0 -1
- package/icons/aws/elastic-transcoder.js +0 -1
- package/icons/aws/elemental-appliances-software.js +0 -1
- package/icons/aws/elemental-conductor.js +0 -1
- package/icons/aws/elemental-delta.js +0 -1
- package/icons/aws/elemental-link.js +0 -1
- package/icons/aws/elemental-live.js +0 -1
- package/icons/aws/elemental-media-connect.js +0 -1
- package/icons/aws/elemental-media-convert.js +0 -1
- package/icons/aws/elemental-media-live.js +0 -1
- package/icons/aws/elemental-media-package.js +0 -1
- package/icons/aws/elemental-media-store.js +0 -1
- package/icons/aws/elemental-media-tailor.js +0 -1
- package/icons/aws/elemental-server.js +0 -1
- package/icons/aws/emr.js +0 -1
- package/icons/aws/event-bridge.js +0 -1
- package/icons/aws/express-workflows.js +0 -1
- package/icons/aws/fargate.js +0 -1
- package/icons/aws/fault-injection-simulator.js +0 -1
- package/icons/aws/file-cache.js +0 -1
- package/icons/aws/fin-space.js +0 -1
- package/icons/aws/firewall-manager.js +0 -1
- package/icons/aws/forecast.js +0 -1
- package/icons/aws/fraud-detector.js +0 -1
- package/icons/aws/free-rtos.js +0 -1
- package/icons/aws/fsx-for-lustre.js +0 -1
- package/icons/aws/fsx-for-net-app-ontap.js +0 -1
- package/icons/aws/fsx-for-open-zfs.js +0 -1
- package/icons/aws/fsx-for-wfs.js +0 -1
- package/icons/aws/fsx.js +0 -1
- package/icons/aws/game-kit.js +0 -1
- package/icons/aws/game-lift.js +0 -1
- package/icons/aws/game-sparks.js +0 -1
- package/icons/aws/genomics-cli.js +0 -1
- package/icons/aws/global-accelerator.js +0 -1
- package/icons/aws/glue-data-brew.js +0 -1
- package/icons/aws/glue-elastic-views.js +0 -1
- package/icons/aws/glue.js +0 -1
- package/icons/aws/ground-station.js +0 -1
- package/icons/aws/guard-duty.js +0 -1
- package/icons/aws/health-lake.js +0 -1
- package/icons/aws/honeycode.js +0 -1
- package/icons/aws/iam-identity-center.js +0 -1
- package/icons/aws/identity-and-access-management.js +0 -1
- package/icons/aws/inspector.js +0 -1
- package/icons/aws/interactive-video-service.js +0 -1
- package/icons/aws/io-t-1-click.js +0 -1
- package/icons/aws/io-t-analytics.js +0 -1
- package/icons/aws/io-t-button.js +0 -1
- package/icons/aws/io-t-core.js +0 -1
- package/icons/aws/io-t-device-defender.js +0 -1
- package/icons/aws/io-t-device-management.js +0 -1
- package/icons/aws/io-t-edu-kit.js +0 -1
- package/icons/aws/io-t-events.js +0 -1
- package/icons/aws/io-t-express-link.js +0 -1
- package/icons/aws/io-t-fleet-wise.js +0 -1
- package/icons/aws/io-t-greengrass.js +0 -1
- package/icons/aws/io-t-robo-runner.js +0 -1
- package/icons/aws/io-t-site-wise.js +0 -1
- package/icons/aws/io-t-things-graph.js +0 -1
- package/icons/aws/io-t-twin-maker.js +0 -1
- package/icons/aws/iq.js +0 -1
- package/icons/aws/kendra.js +0 -1
- package/icons/aws/key-management-service.js +0 -1
- package/icons/aws/keyspaces.js +0 -1
- package/icons/aws/kinesis-data-analytics.js +0 -1
- package/icons/aws/kinesis-data-streams.js +0 -1
- package/icons/aws/kinesis-firehose.js +0 -1
- package/icons/aws/kinesis-video-streams.js +0 -1
- package/icons/aws/kinesis.js +0 -1
- package/icons/aws/lake-formation.js +0 -1
- package/icons/aws/lambda.js +0 -1
- package/icons/aws/launch-wizard.js +0 -1
- package/icons/aws/lex.js +0 -1
- package/icons/aws/license-manager.js +0 -1
- package/icons/aws/lightsail.js +0 -1
- package/icons/aws/local-zones.js +0 -1
- package/icons/aws/location-service.js +0 -1
- package/icons/aws/lookout-for-equipment.js +0 -1
- package/icons/aws/lookout-for-metrics.js +0 -1
- package/icons/aws/lookout-for-vision.js +0 -1
- package/icons/aws/lumberyard.js +0 -1
- package/icons/aws/macie.js +0 -1
- package/icons/aws/mainframe-modernization.js +0 -1
- package/icons/aws/managed-blockchain.js +0 -1
- package/icons/aws/managed-grafana.js +0 -1
- package/icons/aws/managed-service-for-prometheus.js +0 -1
- package/icons/aws/managed-services.js +0 -1
- package/icons/aws/managed-streaming-for-apache-kafka.js +0 -1
- package/icons/aws/managed-workflows-for-apache-airflow.js +0 -1
- package/icons/aws/management-console.js +0 -1
- package/icons/aws/marketplace-dark.js +0 -1
- package/icons/aws/marketplace-light.js +0 -1
- package/icons/aws/memory-db-for-redis.js +0 -1
- package/icons/aws/migration-evaluator.js +0 -1
- package/icons/aws/migration-hub.js +0 -1
- package/icons/aws/monitron.js +0 -1
- package/icons/aws/mq.js +0 -1
- package/icons/aws/neptune.js +0 -1
- package/icons/aws/network-firewall.js +0 -1
- package/icons/aws/neuron.js +0 -1
- package/icons/aws/nice-dcv.js +0 -1
- package/icons/aws/nice-engin-frame.js +0 -1
- package/icons/aws/nimble-studio.js +0 -1
- package/icons/aws/nitro-enclaves.js +0 -1
- package/icons/aws/omics.js +0 -1
- package/icons/aws/open-3d-engine.js +0 -1
- package/icons/aws/open-search-service.js +0 -1
- package/icons/aws/ops-works.js +0 -1
- package/icons/aws/organizations.js +0 -1
- package/icons/aws/outposts-family.js +0 -1
- package/icons/aws/outposts-rack.js +0 -1
- package/icons/aws/outposts-servers.js +0 -1
- package/icons/aws/panorama.js +0 -1
- package/icons/aws/parallel-cluster.js +0 -1
- package/icons/aws/personal-health-dashboard.js +0 -1
- package/icons/aws/personalize.js +0 -1
- package/icons/aws/pinpoint-apis.js +0 -1
- package/icons/aws/pinpoint.js +0 -1
- package/icons/aws/polly.js +0 -1
- package/icons/aws/private-5g.js +0 -1
- package/icons/aws/private-certificate-authority.js +0 -1
- package/icons/aws/private-link.js +0 -1
- package/icons/aws/professional-services.js +0 -1
- package/icons/aws/proton.js +0 -1
- package/icons/aws/quantum-ledger-database.js +0 -1
- package/icons/aws/quick-sight.js +0 -1
- package/icons/aws/rds-on-vmware.js +0 -1
- package/icons/aws/rds.js +0 -1
- package/icons/aws/re-post.js +0 -1
- package/icons/aws/red-hat-open-shift-service-on-aws.js +0 -1
- package/icons/aws/redshift.js +0 -1
- package/icons/aws/rekognition.js +0 -1
- package/icons/aws/reserved-instance-reporting.js +0 -1
- package/icons/aws/resilience-hub.js +0 -1
- package/icons/aws/resource-access-manager.js +0 -1
- package/icons/aws/resource-explorer.js +0 -1
- package/icons/aws/robo-maker.js +0 -1
- package/icons/aws/route-53.js +0 -1
- package/icons/aws/s3-on-outposts.js +0 -1
- package/icons/aws/sage-maker-ground-truth.js +0 -1
- package/icons/aws/sage-maker-studio-lab.js +0 -1
- package/icons/aws/sage-maker.js +0 -1
- package/icons/aws/savings-plans.js +0 -1
- package/icons/aws/secrets-manager.js +0 -1
- package/icons/aws/security-hub.js +0 -1
- package/icons/aws/security-lake.js +0 -1
- package/icons/aws/server-migration-service.js +0 -1
- package/icons/aws/serverless-application-repository.js +0 -1
- package/icons/aws/service-catalog.js +0 -1
- package/icons/aws/service-management-connector.js +0 -1
- package/icons/aws/shield.js +0 -1
- package/icons/aws/signer.js +0 -1
- package/icons/aws/sim-space-weaver.js +0 -1
- package/icons/aws/simple-email-service.js +0 -1
- package/icons/aws/simple-notification-service.js +0 -1
- package/icons/aws/simple-queue-service.js +0 -1
- package/icons/aws/simple-storage-service-glacier.js +0 -1
- package/icons/aws/simple-storage-service.js +0 -1
- package/icons/aws/site-to-site-vpn.js +0 -1
- package/icons/aws/snowball-edge.js +0 -1
- package/icons/aws/snowball.js +0 -1
- package/icons/aws/snowcone.js +0 -1
- package/icons/aws/snowmobile.js +0 -1
- package/icons/aws/step-functions.js +0 -1
- package/icons/aws/storage-gateway.js +0 -1
- package/icons/aws/sumerian.js +0 -1
- package/icons/aws/supply-chain.js +0 -1
- package/icons/aws/support.js +0 -1
- package/icons/aws/systems-manager.js +0 -1
- package/icons/aws/tensor-flow-on-aws.js +0 -1
- package/icons/aws/textract.js +0 -1
- package/icons/aws/thinkbox-deadline.js +0 -1
- package/icons/aws/thinkbox-frost.js +0 -1
- package/icons/aws/thinkbox-krakatoa.js +0 -1
- package/icons/aws/thinkbox-sequoia.js +0 -1
- package/icons/aws/thinkbox-stoke.js +0 -1
- package/icons/aws/thinkbox-xmesh.js +0 -1
- package/icons/aws/timestream.js +0 -1
- package/icons/aws/tools-and-sdks.js +0 -1
- package/icons/aws/torch-serve.js +0 -1
- package/icons/aws/training-certification.js +0 -1
- package/icons/aws/transcribe.js +0 -1
- package/icons/aws/transfer-family.js +0 -1
- package/icons/aws/transit-gateway.js +0 -1
- package/icons/aws/translate.js +0 -1
- package/icons/aws/trusted-advisor.js +0 -1
- package/icons/aws/verified-access.js +0 -1
- package/icons/aws/verified-permissions.js +0 -1
- package/icons/aws/virtual-private-cloud.js +0 -1
- package/icons/aws/vmware-cloud-on-aws.js +0 -1
- package/icons/aws/vpc-lattice.js +0 -1
- package/icons/aws/waf.js +0 -1
- package/icons/aws/wavelength.js +0 -1
- package/icons/aws/well-architected-tool.js +0 -1
- package/icons/aws/wickr.js +0 -1
- package/icons/aws/work-docs-sdk.js +0 -1
- package/icons/aws/work-docs.js +0 -1
- package/icons/aws/work-link.js +0 -1
- package/icons/aws/work-mail.js +0 -1
- package/icons/aws/work-spaces-family.js +0 -1
- package/icons/aws/x-ray.js +0 -1
- package/icons/azure/abs-member.js +0 -1
- package/icons/azure/active-directory-connect-health.js +0 -1
- package/icons/azure/activity-log.js +0 -1
- package/icons/azure/administrative-units.js +0 -1
- package/icons/azure/advisor.js +0 -1
- package/icons/azure/ai-at-edge.js +0 -1
- package/icons/azure/ai-studio.js +0 -1
- package/icons/azure/aks-automatic.js +0 -1
- package/icons/azure/aks-istio.js +0 -1
- package/icons/azure/alerts.js +0 -1
- package/icons/azure/all-resources.js +0 -1
- package/icons/azure/analysis-services.js +0 -1
- package/icons/azure/anomaly-detector.js +0 -1
- package/icons/azure/api-center.js +0 -1
- package/icons/azure/api-connections.js +0 -1
- package/icons/azure/api-management-services.js +0 -1
- package/icons/azure/api-proxy.js +0 -1
- package/icons/azure/app-compliance-automation.js +0 -1
- package/icons/azure/app-configuration.js +0 -1
- package/icons/azure/app-registrations.js +0 -1
- package/icons/azure/app-service-certificates.js +0 -1
- package/icons/azure/app-service-domains.js +0 -1
- package/icons/azure/app-service-environments.js +0 -1
- package/icons/azure/app-service-plans.js +0 -1
- package/icons/azure/app-services.js +0 -1
- package/icons/azure/app-space-component.js +0 -1
- package/icons/azure/app-space.js +0 -1
- package/icons/azure/applens.js +0 -1
- package/icons/azure/application-gateway-containers.js +0 -1
- package/icons/azure/application-gateways.js +0 -1
- package/icons/azure/application-group.js +0 -1
- package/icons/azure/application-insights.js +0 -1
- package/icons/azure/application-security-groups.js +0 -1
- package/icons/azure/aquila.js +0 -1
- package/icons/azure/arc-data-services.js +0 -1
- package/icons/azure/arc-kubernetes.js +0 -1
- package/icons/azure/arc-machines.js +0 -1
- package/icons/azure/arc-postgre-sql.js +0 -1
- package/icons/azure/arc-sql-managed-instance.js +0 -1
- package/icons/azure/arc-sql-server.js +0 -1
- package/icons/azure/atm-multistack.js +0 -1
- package/icons/azure/auto-scale.js +0 -1
- package/icons/azure/automanaged-vm.js +0 -1
- package/icons/azure/automation-accounts.js +0 -1
- package/icons/azure/availability-sets.js +0 -1
- package/icons/azure/avs-vm.js +0 -1
- package/icons/azure/azure-a.js +0 -1
- package/icons/azure/azure-ad-b2c.js +0 -1
- package/icons/azure/azure-api-for-fhir.js +0 -1
- package/icons/azure/azure-applied-ai-services.js +0 -1
- package/icons/azure/azure-arc.js +0 -1
- package/icons/azure/azure-attestation.js +0 -1
- package/icons/azure/azure-backup-center.js +0 -1
- package/icons/azure/azure-blockchain-service.js +0 -1
- package/icons/azure/azure-center-for-sap.js +0 -1
- package/icons/azure/azure-chaos-studio.js +0 -1
- package/icons/azure/azure-cloud-shell.js +0 -1
- package/icons/azure/azure-communication-services.js +0 -1
- package/icons/azure/azure-communications-gateway.js +0 -1
- package/icons/azure/azure-compute-galleries.js +0 -1
- package/icons/azure/azure-consumption-commitment.js +0 -1
- package/icons/azure/azure-cosmos-db.js +0 -1
- package/icons/azure/azure-data-catalog.js +0 -1
- package/icons/azure/azure-data-explorer-clusters.js +0 -1
- package/icons/azure/azure-database-maria-db-server.js +0 -1
- package/icons/azure/azure-database-migration-services.js +0 -1
- package/icons/azure/azure-database-my-sql-server.js +0 -1
- package/icons/azure/azure-database-postgre-sql-server-group.js +0 -1
- package/icons/azure/azure-database-postgre-sql-server.js +0 -1
- package/icons/azure/azure-databox-gateway.js +0 -1
- package/icons/azure/azure-databricks.js +0 -1
- package/icons/azure/azure-deployment-environments.js +0 -1
- package/icons/azure/azure-dev-ops.js +0 -1
- package/icons/azure/azure-dev-tunnels.js +0 -1
- package/icons/azure/azure-edge-hardware-center.js +0 -1
- package/icons/azure/azure-experimentation-studio.js +0 -1
- package/icons/azure/azure-fileshares.js +0 -1
- package/icons/azure/azure-firewall-manager.js +0 -1
- package/icons/azure/azure-firewall-policy.js +0 -1
- package/icons/azure/azure-hcp-cache.js +0 -1
- package/icons/azure/azure-hpc-workbenches.js +0 -1
- package/icons/azure/azure-hybrid-center.js +0 -1
- package/icons/azure/azure-information-protection.js +0 -1
- package/icons/azure/azure-io-t-operations.js +0 -1
- package/icons/azure/azure-lighthouse.js +0 -1
- package/icons/azure/azure-load-testing.js +0 -1
- package/icons/azure/azure-managed-grafana.js +0 -1
- package/icons/azure/azure-managed-redis.js +0 -1
- package/icons/azure/azure-maps-accounts.js +0 -1
- package/icons/azure/azure-media-service.js +0 -1
- package/icons/azure/azure-migrate.js +0 -1
- package/icons/azure/azure-monitor-dashboard.js +0 -1
- package/icons/azure/azure-monitor-pipeline.js +0 -1
- package/icons/azure/azure-monitors-for-sap-solutions.js +0 -1
- package/icons/azure/azure-net-app-files.js +0 -1
- package/icons/azure/azure-network-function-manager-functions.js +0 -1
- package/icons/azure/azure-network-function-manager.js +0 -1
- package/icons/azure/azure-object-understanding.js +0 -1
- package/icons/azure/azure-open-ai.js +0 -1
- package/icons/azure/azure-operator-5g-core.js +0 -1
- package/icons/azure/azure-operator-insights.js +0 -1
- package/icons/azure/azure-operator-nexus.js +0 -1
- package/icons/azure/azure-operator-service-manager.js +0 -1
- package/icons/azure/azure-orbital.js +0 -1
- package/icons/azure/azure-programmable-connectivity.js +0 -1
- package/icons/azure/azure-purview-accounts.js +0 -1
- package/icons/azure/azure-quotas.js +0 -1
- package/icons/azure/azure-red-hat-open-shift.js +0 -1
- package/icons/azure/azure-sentinel.js +0 -1
- package/icons/azure/azure-service-bus.js +0 -1
- package/icons/azure/azure-sphere.js +0 -1
- package/icons/azure/azure-spring-apps.js +0 -1
- package/icons/azure/azure-sql-edge.js +0 -1
- package/icons/azure/azure-sql-server-stretch-databases.js +0 -1
- package/icons/azure/azure-sql-vm.js +0 -1
- package/icons/azure/azure-sql.js +0 -1
- package/icons/azure/azure-stack-edge.js +0 -1
- package/icons/azure/azure-stack-hci-sizer.js +0 -1
- package/icons/azure/azure-stack.js +0 -1
- package/icons/azure/azure-storage-mover.js +0 -1
- package/icons/azure/azure-support-center-blue.js +0 -1
- package/icons/azure/azure-sustainability.js +0 -1
- package/icons/azure/azure-synapse-analytics.js +0 -1
- package/icons/azure/azure-token-service.js +0 -1
- package/icons/azure/azure-video-indexer.js +0 -1
- package/icons/azure/azure-virtual-desktop.js +0 -1
- package/icons/azure/azure-vmware-solution.js +0 -1
- package/icons/azure/azure-workbooks.js +0 -1
- package/icons/azure/azurite.js +0 -1
- package/icons/azure/backlog.js +0 -1
- package/icons/azure/backup-vault.js +0 -1
- package/icons/azure/bare-metal-infrastructure.js +0 -1
- package/icons/azure/bastions.js +0 -1
- package/icons/azure/batch-accounts.js +0 -1
- package/icons/azure/batch-ai.js +0 -1
- package/icons/azure/biz-talk.js +0 -1
- package/icons/azure/blob-block.js +0 -1
- package/icons/azure/blob-page.js +0 -1
- package/icons/azure/blockchain-applications.js +0 -1
- package/icons/azure/blueprints.js +0 -1
- package/icons/azure/bonsai.js +0 -1
- package/icons/azure/bot-services.js +0 -1
- package/icons/azure/branch.js +0 -1
- package/icons/azure/breeze.js +0 -1
- package/icons/azure/browser.js +0 -1
- package/icons/azure/bug.js +0 -1
- package/icons/azure/builds.js +0 -1
- package/icons/azure/business-process-tracking.js +0 -1
- package/icons/azure/cache-redis.js +0 -1
- package/icons/azure/cache.js +0 -1
- package/icons/azure/capacity-reservation-groups.js +0 -1
- package/icons/azure/capacity.js +0 -1
- package/icons/azure/cdn-profiles.js +0 -1
- package/icons/azure/central-service-instance-for-sap.js +0 -1
- package/icons/azure/ceres.js +0 -1
- package/icons/azure/change-analysis.js +0 -1
- package/icons/azure/client-apps.js +0 -1
- package/icons/azure/cloud-services-classic.js +0 -1
- package/icons/azure/cloud-services-extended-support.js +0 -1
- package/icons/azure/cloud-test.js +0 -1
- package/icons/azure/code-optimization.js +0 -1
- package/icons/azure/code.js +0 -1
- package/icons/azure/cognitive-search.js +0 -1
- package/icons/azure/cognitive-services-decisions.js +0 -1
- package/icons/azure/cognitive-services.js +0 -1
- package/icons/azure/collaborative-service.js +0 -1
- package/icons/azure/commit.js +0 -1
- package/icons/azure/community-images.js +0 -1
- package/icons/azure/compliance-center.js +0 -1
- package/icons/azure/compliance.js +0 -1
- package/icons/azure/compute-fleet.js +0 -1
- package/icons/azure/computer-vision.js +0 -1
- package/icons/azure/conditional-access.js +0 -1
- package/icons/azure/confidential-ledgers.js +0 -1
- package/icons/azure/connected-cache.js +0 -1
- package/icons/azure/connected-vehicle-platform.js +0 -1
- package/icons/azure/connections.js +0 -1
- package/icons/azure/consortium.js +0 -1
- package/icons/azure/container-apps-environments.js +0 -1
- package/icons/azure/container-instances.js +0 -1
- package/icons/azure/container-registries.js +0 -1
- package/icons/azure/container-services-deprecated.js +0 -1
- package/icons/azure/content-moderators.js +0 -1
- package/icons/azure/content-safety.js +0 -1
- package/icons/azure/controls-horizontal.js +0 -1
- package/icons/azure/controls.js +0 -1
- package/icons/azure/cost-alerts.js +0 -1
- package/icons/azure/cost-analysis.js +0 -1
- package/icons/azure/cost-budgets.js +0 -1
- package/icons/azure/cost-export.js +0 -1
- package/icons/azure/cost-management-and-billing.js +0 -1
- package/icons/azure/cost-management.js +0 -1
- package/icons/azure/counter.js +0 -1
- package/icons/azure/cubes.js +0 -1
- package/icons/azure/custom-ip-prefix.js +0 -1
- package/icons/azure/custom-vision.js +0 -1
- package/icons/azure/customer-lockbox-for-microsoft-azure.js +0 -1
- package/icons/azure/dashboard-hub.js +0 -1
- package/icons/azure/dashboard.js +0 -1
- package/icons/azure/data-box.js +0 -1
- package/icons/azure/data-collection-rules.js +0 -1
- package/icons/azure/data-factories.js +0 -1
- package/icons/azure/data-lake-analytics.js +0 -1
- package/icons/azure/data-lake-storage-gen1.js +0 -1
- package/icons/azure/data-lake-store-gen1.js +0 -1
- package/icons/azure/data-share-invitations.js +0 -1
- package/icons/azure/data-shares.js +0 -1
- package/icons/azure/data-virtualization.js +0 -1
- package/icons/azure/database-instance-for-sap.js +0 -1
- package/icons/azure/ddo-s-protection-plans.js +0 -1
- package/icons/azure/dedicated-hsm.js +0 -1
- package/icons/azure/defender-cm-local-manager.js +0 -1
- package/icons/azure/defender-dcs-controller.js +0 -1
- package/icons/azure/defender-distributer-control-system.js +0 -1
- package/icons/azure/defender-engineering-station.js +0 -1
- package/icons/azure/defender-external-management.js +0 -1
- package/icons/azure/defender-freezer-monitor.js +0 -1
- package/icons/azure/defender-historian.js +0 -1
- package/icons/azure/defender-hmi.js +0 -1
- package/icons/azure/defender-industrial-packaging-system.js +0 -1
- package/icons/azure/defender-industrial-printer.js +0 -1
- package/icons/azure/defender-industrial-robot.js +0 -1
- package/icons/azure/defender-industrial-scale-system.js +0 -1
- package/icons/azure/defender-marquee.js +0 -1
- package/icons/azure/defender-meter.js +0 -1
- package/icons/azure/defender-plc.js +0 -1
- package/icons/azure/defender-pneumatic-device.js +0 -1
- package/icons/azure/defender-programable-board.js +0 -1
- package/icons/azure/defender-relay.js +0 -1
- package/icons/azure/defender-robot-controller.js +0 -1
- package/icons/azure/defender-rtu.js +0 -1
- package/icons/azure/defender-sensor.js +0 -1
- package/icons/azure/defender-slot.js +0 -1
- package/icons/azure/defender-web-guiding-system.js +0 -1
- package/icons/azure/detonation.js +0 -1
- package/icons/azure/dev-console.js +0 -1
- package/icons/azure/dev-ops-starter.js +0 -1
- package/icons/azure/dev-test-labs.js +0 -1
- package/icons/azure/device-compliance.js +0 -1
- package/icons/azure/device-configuration.js +0 -1
- package/icons/azure/device-enrollment.js +0 -1
- package/icons/azure/device-provisioning-services.js +0 -1
- package/icons/azure/device-security-apple.js +0 -1
- package/icons/azure/device-security-google.js +0 -1
- package/icons/azure/device-security-windows.js +0 -1
- package/icons/azure/device-update-io-t-hub.js +0 -1
- package/icons/azure/devices.js +0 -1
- package/icons/azure/diagnostics-settings.js +0 -1
- package/icons/azure/digital-twins.js +0 -1
- package/icons/azure/disk-encryption-sets.js +0 -1
- package/icons/azure/disk-pool.js +0 -1
- package/icons/azure/disks-classic.js +0 -1
- package/icons/azure/disks-snapshots.js +0 -1
- package/icons/azure/disks.js +0 -1
- package/icons/azure/dns-multistack.js +0 -1
- package/icons/azure/dns-private-resolver.js +0 -1
- package/icons/azure/dns-security-policy.js +0 -1
- package/icons/azure/dns-zones.js +0 -1
- package/icons/azure/download.js +0 -1
- package/icons/azure/e-books.js +0 -1
- package/icons/azure/edge-actions.js +0 -1
- package/icons/azure/edge-management.js +0 -1
- package/icons/azure/edge-storage-accelerator.js +0 -1
- package/icons/azure/education.js +0 -1
- package/icons/azure/elastic-job-agents.js +0 -1
- package/icons/azure/elastic-san.js +0 -1
- package/icons/azure/endpoint-analytics.js +0 -1
- package/icons/azure/engage-center-connect.js +0 -1
- package/icons/azure/enterprise-applications.js +0 -1
- package/icons/azure/entra-connect-health.js +0 -1
- package/icons/azure/entra-connect-sync.js +0 -1
- package/icons/azure/entra-connect.js +0 -1
- package/icons/azure/entra-domain-services.js +0 -1
- package/icons/azure/entra-global-secure-access.js +0 -1
- package/icons/azure/entra-id-protection.js +0 -1
- package/icons/azure/entra-identity-custom-roles.js +0 -1
- package/icons/azure/entra-identity-licenses.js +0 -1
- package/icons/azure/entra-identity-risky-signins.js +0 -1
- package/icons/azure/entra-identity-risky-users.js +0 -1
- package/icons/azure/entra-identity-roles-and-administrators.js +0 -1
- package/icons/azure/entra-internet-access.js +0 -1
- package/icons/azure/entra-managed-identities.js +0 -1
- package/icons/azure/entra-private-access.js +0 -1
- package/icons/azure/entra-privleged-identity-management.js +0 -1
- package/icons/azure/entra-verified-id.js +0 -1
- package/icons/azure/error.js +0 -1
- package/icons/azure/event-grid-domains.js +0 -1
- package/icons/azure/event-grid-subscriptions.js +0 -1
- package/icons/azure/event-grid-topics.js +0 -1
- package/icons/azure/event-hub-clusters.js +0 -1
- package/icons/azure/event-hubs.js +0 -1
- package/icons/azure/exchange-access.js +0 -1
- package/icons/azure/exchange-on-premises-access.js +0 -1
- package/icons/azure/express-route-circuits.js +0 -1
- package/icons/azure/express-route-direct.js +0 -1
- package/icons/azure/express-route-traffic-collector.js +0 -1
- package/icons/azure/extended-security-updates.js +0 -1
- package/icons/azure/extensions.js +0 -1
- package/icons/azure/external-id-modified.js +0 -1
- package/icons/azure/external-id.js +0 -1
- package/icons/azure/external-identities.js +0 -1
- package/icons/azure/face-apis.js +0 -1
- package/icons/azure/feature-previews.js +0 -1
- package/icons/azure/fhir-service.js +0 -1
- package/icons/azure/fiji.js +0 -1
- package/icons/azure/file.js +0 -1
- package/icons/azure/files.js +0 -1
- package/icons/azure/firewalls.js +0 -1
- package/icons/azure/folder-blank.js +0 -1
- package/icons/azure/folder-website.js +0 -1
- package/icons/azure/form-recognizers.js +0 -1
- package/icons/azure/frd-qa.js +0 -1
- package/icons/azure/free-services.js +0 -1
- package/icons/azure/front-door-and-cdn-profiles.js +0 -1
- package/icons/azure/ftp.js +0 -1
- package/icons/azure/function-apps.js +0 -1
- package/icons/azure/gear.js +0 -1
- package/icons/azure/genomics-accounts.js +0 -1
- package/icons/azure/genomics.js +0 -1
- package/icons/azure/globe-error.js +0 -1
- package/icons/azure/globe-success.js +0 -1
- package/icons/azure/globe-warning.js +0 -1
- package/icons/azure/groups.js +0 -1
- package/icons/azure/guide.js +0 -1
- package/icons/azure/hd-insight-clusters.js +0 -1
- package/icons/azure/hdi-aks-cluster.js +0 -1
- package/icons/azure/heart.js +0 -1
- package/icons/azure/help-and-support.js +0 -1
- package/icons/azure/host-groups.js +0 -1
- package/icons/azure/host-pools.js +0 -1
- package/icons/azure/hosts.js +0 -1
- package/icons/azure/hybrid-connectivity-hub.js +0 -1
- package/icons/azure/ic-m-troubleshooting.js +0 -1
- package/icons/azure/identity-governance.js +0 -1
- package/icons/azure/identity-multi-factor-authentication.js +0 -1
- package/icons/azure/identity-secure-score.js +0 -1
- package/icons/azure/image-definitions.js +0 -1
- package/icons/azure/image-templates.js +0 -1
- package/icons/azure/image-versions.js +0 -1
- package/icons/azure/image.js +0 -1
- package/icons/azure/images.js +0 -1
- package/icons/azure/immersive-readers.js +0 -1
- package/icons/azure/import-export-jobs.js +0 -1
- package/icons/azure/industrial-io-t.js +0 -1
- package/icons/azure/information.js +0 -1
- package/icons/azure/infrastructure-backup.js +0 -1
- package/icons/azure/input-output.js +0 -1
- package/icons/azure/instance-pools.js +0 -1
- package/icons/azure/integration-accounts.js +0 -1
- package/icons/azure/integration-environments.js +0 -1
- package/icons/azure/integration-service-environments.js +0 -1
- package/icons/azure/internet-analyzer-profiles.js +0 -1
- package/icons/azure/intune-app-protection.js +0 -1
- package/icons/azure/intune-for-education.js +0 -1
- package/icons/azure/intune-trends.js +0 -1
- package/icons/azure/intune.js +0 -1
- package/icons/azure/io-t-central-applications.js +0 -1
- package/icons/azure/io-t-edge.js +0 -1
- package/icons/azure/io-t-hub.js +0 -1
- package/icons/azure/ip-address-manager.js +0 -1
- package/icons/azure/ip-groups.js +0 -1
- package/icons/azure/journey-hub.js +0 -1
- package/icons/azure/key-vaults.js +0 -1
- package/icons/azure/keys.js +0 -1
- package/icons/azure/kubernetes-fleet-manager.js +0 -1
- package/icons/azure/kubernetes-services.js +0 -1
- package/icons/azure/lab-accounts.js +0 -1
- package/icons/azure/lab-services.js +0 -1
- package/icons/azure/landing-zone.js +0 -1
- package/icons/azure/language-understanding.js +0 -1
- package/icons/azure/language.js +0 -1
- package/icons/azure/launch-portal.js +0 -1
- package/icons/azure/learn.js +0 -1
- package/icons/azure/load-balancer-hub.js +0 -1
- package/icons/azure/load-balancers.js +0 -1
- package/icons/azure/load-test.js +0 -1
- package/icons/azure/load-testing.js +0 -1
- package/icons/azure/local-network-gateways.js +0 -1
- package/icons/azure/location.js +0 -1
- package/icons/azure/log-analytics-query-pack.js +0 -1
- package/icons/azure/log-analytics-workspaces.js +0 -1
- package/icons/azure/log-streaming.js +0 -1
- package/icons/azure/logic-apps-custom-connector.js +0 -1
- package/icons/azure/logic-apps-template.js +0 -1
- package/icons/azure/logic-apps.js +0 -1
- package/icons/azure/machine-learning-studio-classic-web-services.js +0 -1
- package/icons/azure/machine-learning-studio-web-service-plans.js +0 -1
- package/icons/azure/machine-learning-studio-workspaces.js +0 -1
- package/icons/azure/machine-learning.js +0 -1
- package/icons/azure/machines-azure-arc.js +0 -1
- package/icons/azure/maintenance-configuration.js +0 -1
- package/icons/azure/managed-applications-center.js +0 -1
- package/icons/azure/managed-database.js +0 -1
- package/icons/azure/managed-desktop.js +0 -1
- package/icons/azure/managed-dev-ops-pools.js +0 -1
- package/icons/azure/managed-file-shares.js +0 -1
- package/icons/azure/managed-identities.js +0 -1
- package/icons/azure/managed-instance-apache-cassandra.js +0 -1
- package/icons/azure/managed-service-fabric.js +0 -1
- package/icons/azure/management-groups.js +0 -1
- package/icons/azure/management-portal.js +0 -1
- package/icons/azure/marketplace-management.js +0 -1
- package/icons/azure/marketplace.js +0 -1
- package/icons/azure/med-tech-service.js +0 -1
- package/icons/azure/media-file.js +0 -1
- package/icons/azure/media.js +0 -1
- package/icons/azure/mesh-applications.js +0 -1
- package/icons/azure/metrics-advisor.js +0 -1
- package/icons/azure/metrics.js +0 -1
- package/icons/azure/microsoft-defender-easm.js +0 -1
- package/icons/azure/microsoft-defender-for-cloud.js +0 -1
- package/icons/azure/microsoft-defender-for-io-t.js +0 -1
- package/icons/azure/microsoft-dev-box.js +0 -1
- package/icons/azure/mindaro.js +0 -1
- package/icons/azure/mission-landing-zone.js +0 -1
- package/icons/azure/mobile-engagement.js +0 -1
- package/icons/azure/mobile-networks.js +0 -1
- package/icons/azure/mobile.js +0 -1
- package/icons/azure/modular-data-center.js +0 -1
- package/icons/azure/module.js +0 -1
- package/icons/azure/monitor-health-models.js +0 -1
- package/icons/azure/monitor.js +0 -1
- package/icons/azure/multi-tenancy.js +0 -1
- package/icons/azure/multifactor-authentication.js +0 -1
- package/icons/azure/my-customers.js +0 -1
- package/icons/azure/nat.js +0 -1
- package/icons/azure/network-foundation-hub.js +0 -1
- package/icons/azure/network-interfaces.js +0 -1
- package/icons/azure/network-managers.js +0 -1
- package/icons/azure/network-security-groups.js +0 -1
- package/icons/azure/network-security-hub.js +0 -1
- package/icons/azure/network-security-perimeters.js +0 -1
- package/icons/azure/network-watcher.js +0 -1
- package/icons/azure/notification-hub-namespaces.js +0 -1
- package/icons/azure/notification-hubs.js +0 -1
- package/icons/azure/offers.js +0 -1
- package/icons/azure/on-premises-data-gateways.js +0 -1
- package/icons/azure/open-supply-chain-platform.js +0 -1
- package/icons/azure/operation-log-classic.js +0 -1
- package/icons/azure/oracle-database.js +0 -1
- package/icons/azure/os-images-classic.js +0 -1
- package/icons/azure/osconfig.js +0 -1
- package/icons/azure/outbound-connection.js +0 -1
- package/icons/azure/partner-namespace.js +0 -1
- package/icons/azure/partner-registration.js +0 -1
- package/icons/azure/partner-topic.js +0 -1
- package/icons/azure/peering-service.js +0 -1
- package/icons/azure/peerings.js +0 -1
- package/icons/azure/personalizers.js +0 -1
- package/icons/azure/planetary-computer-pro.js +0 -1
- package/icons/azure/plans.js +0 -1
- package/icons/azure/policy.js +0 -1
- package/icons/azure/power-bi-embedded.js +0 -1
- package/icons/azure/power-platform.js +0 -1
- package/icons/azure/power-up.js +0 -1
- package/icons/azure/power.js +0 -1
- package/icons/azure/powershell.js +0 -1
- package/icons/azure/preview-features.js +0 -1
- package/icons/azure/private-endpoints.js +0 -1
- package/icons/azure/private-link-service.js +0 -1
- package/icons/azure/private-link-services.js +0 -1
- package/icons/azure/private-link.js +0 -1
- package/icons/azure/process-explorer.js +0 -1
- package/icons/azure/production-ready-database.js +0 -1
- package/icons/azure/promethus.js +0 -1
- package/icons/azure/proximity-placement-groups.js +0 -1
- package/icons/azure/public-ip-addresses-classic.js +0 -1
- package/icons/azure/public-ip-addresses.js +0 -1
- package/icons/azure/public-ip-prefixes.js +0 -1
- package/icons/azure/qn-a-makers.js +0 -1
- package/icons/azure/quickstart-center.js +0 -1
- package/icons/azure/recent.js +0 -1
- package/icons/azure/recovery-services-vaults.js +0 -1
- package/icons/azure/region-management.js +0 -1
- package/icons/azure/relays.js +0 -1
- package/icons/azure/remote-rendering.js +0 -1
- package/icons/azure/reservations.js +0 -1
- package/icons/azure/reserved-capacity.js +0 -1
- package/icons/azure/reserved-ip-addresses-classic.js +0 -1
- package/icons/azure/resource-explorer.js +0 -1
- package/icons/azure/resource-graph-explorer.js +0 -1
- package/icons/azure/resource-group-list.js +0 -1
- package/icons/azure/resource-groups.js +0 -1
- package/icons/azure/resource-guard.js +0 -1
- package/icons/azure/resource-linked.js +0 -1
- package/icons/azure/resource-management-private-link.js +0 -1
- package/icons/azure/resource-mover.js +0 -1
- package/icons/azure/resources-provider.js +0 -1
- package/icons/azure/restore-points-collections.js +0 -1
- package/icons/azure/restore-points.js +0 -1
- package/icons/azure/route-filters.js +0 -1
- package/icons/azure/route-tables.js +0 -1
- package/icons/azure/rtos.js +0 -1
- package/icons/azure/savings-plans.js +0 -1
- package/icons/azure/scheduler-job-collections.js +0 -1
- package/icons/azure/scheduler.js +0 -1
- package/icons/azure/scvmm-management-servers.js +0 -1
- package/icons/azure/search-grid.js +0 -1
- package/icons/azure/search.js +0 -1
- package/icons/azure/security-baselines.js +0 -1
- package/icons/azure/security.js +0 -1
- package/icons/azure/send-grid-accounts.js +0 -1
- package/icons/azure/server-farm.js +0 -1
- package/icons/azure/serverless-search.js +0 -1
- package/icons/azure/service-catalog-mad.js +0 -1
- package/icons/azure/service-endpoint-policies.js +0 -1
- package/icons/azure/service-fabric-clusters.js +0 -1
- package/icons/azure/service-group-relationships.js +0 -1
- package/icons/azure/service-groups.js +0 -1
- package/icons/azure/service-health.js +0 -1
- package/icons/azure/service-providers.js +0 -1
- package/icons/azure/shared-image-galleries.js +0 -1
- package/icons/azure/signal-r.js +0 -1
- package/icons/azure/software-as-a-service.js +0 -1
- package/icons/azure/software-updates.js +0 -1
- package/icons/azure/solutions.js +0 -1
- package/icons/azure/sonic-dash.js +0 -1
- package/icons/azure/spatial-anchor-accounts.js +0 -1
- package/icons/azure/speech-services.js +0 -1
- package/icons/azure/spot-vm.js +0 -1
- package/icons/azure/spot-vmss.js +0 -1
- package/icons/azure/sql-data-warehouses.js +0 -1
- package/icons/azure/sql-database-fleet-manager.js +0 -1
- package/icons/azure/sql-database.js +0 -1
- package/icons/azure/sql-elastic-pools.js +0 -1
- package/icons/azure/sql-managed-instance.js +0 -1
- package/icons/azure/sql-server-registries.js +0 -1
- package/icons/azure/sql-server.js +0 -1
- package/icons/azure/ssd.js +0 -1
- package/icons/azure/ssh-keys.js +0 -1
- package/icons/azure/ssis-lift-and-shift-ir.js +0 -1
- package/icons/azure/stack-hci-premium.js +0 -1
- package/icons/azure/static-apps.js +0 -1
- package/icons/azure/stor-simple-data-managers.js +0 -1
- package/icons/azure/stor-simple-device-managers.js +0 -1
- package/icons/azure/storage-accounts-classic.js +0 -1
- package/icons/azure/storage-accounts.js +0 -1
- package/icons/azure/storage-actions.js +0 -1
- package/icons/azure/storage-azure-files.js +0 -1
- package/icons/azure/storage-container.js +0 -1
- package/icons/azure/storage-explorer.js +0 -1
- package/icons/azure/storage-functions.js +0 -1
- package/icons/azure/storage-hubs.js +0 -1
- package/icons/azure/storage-queue.js +0 -1
- package/icons/azure/storage-sync-services.js +0 -1
- package/icons/azure/stream-analytics-jobs.js +0 -1
- package/icons/azure/subnet.js +0 -1
- package/icons/azure/subscriptions.js +0 -1
- package/icons/azure/system-topic.js +0 -1
- package/icons/azure/table.js +0 -1
- package/icons/azure/tag.js +0 -1
- package/icons/azure/tags.js +0 -1
- package/icons/azure/targets-management.js +0 -1
- package/icons/azure/template-specs.js +0 -1
- package/icons/azure/templates.js +0 -1
- package/icons/azure/tenant-properties.js +0 -1
- package/icons/azure/tenant-status.js +0 -1
- package/icons/azure/test-base.js +0 -1
- package/icons/azure/tfs-vc-repository.js +0 -1
- package/icons/azure/time-series-data-sets.js +0 -1
- package/icons/azure/time-series-insights-access-policies.js +0 -1
- package/icons/azure/time-series-insights-environments.js +0 -1
- package/icons/azure/time-series-insights-event-sources.js +0 -1
- package/icons/azure/toolbox.js +0 -1
- package/icons/azure/toolchain-orchestrator.js +0 -1
- package/icons/azure/traffic-manager-profiles.js +0 -1
- package/icons/azure/translator-text.js +0 -1
- package/icons/azure/troubleshoot.js +0 -1
- package/icons/azure/universal-print.js +0 -1
- package/icons/azure/update-management-center.js +0 -1
- package/icons/azure/updates.js +0 -1
- package/icons/azure/user-privacy.js +0 -1
- package/icons/azure/user-settings.js +0 -1
- package/icons/azure/user-subscriptions.js +0 -1
- package/icons/azure/users.js +0 -1
- package/icons/azure/verifiable-credentials.js +0 -1
- package/icons/azure/verification-as-a-service.js +0 -1
- package/icons/azure/versions.js +0 -1
- package/icons/azure/video-analyzers.js +0 -1
- package/icons/azure/virtual-clusters.js +0 -1
- package/icons/azure/virtual-enclaves.js +0 -1
- package/icons/azure/virtual-instance-for-sap.js +0 -1
- package/icons/azure/virtual-machine.js +0 -1
- package/icons/azure/virtual-machines-classic.js +0 -1
- package/icons/azure/virtual-network-gateways.js +0 -1
- package/icons/azure/virtual-networks-classic.js +0 -1
- package/icons/azure/virtual-networks.js +0 -1
- package/icons/azure/virtual-router.js +0 -1
- package/icons/azure/virtual-visits-builder.js +0 -1
- package/icons/azure/virtual-wan-hub.js +0 -1
- package/icons/azure/virtual-wans.js +0 -1
- package/icons/azure/vm-app-definitions.js +0 -1
- package/icons/azure/vm-app-versions.js +0 -1
- package/icons/azure/vm-image-version.js +0 -1
- package/icons/azure/vm-images-classic.js +0 -1
- package/icons/azure/vm-scale-sets.js +0 -1
- package/icons/azure/vpnclient-windows.js +0 -1
- package/icons/azure/wac-installer.js +0 -1
- package/icons/azure/wac.js +0 -1
- package/icons/azure/web-app-database.js +0 -1
- package/icons/azure/web-application-firewall-policies-waf.js +0 -1
- package/icons/azure/web-jobs.js +0 -1
- package/icons/azure/web-slots.js +0 -1
- package/icons/azure/web-test.js +0 -1
- package/icons/azure/website-power.js +0 -1
- package/icons/azure/website-staging.js +0 -1
- package/icons/azure/windows-notification-services.js +0 -1
- package/icons/azure/windows10-core-services.js +0 -1
- package/icons/azure/workbooks.js +0 -1
- package/icons/azure/worker-container-app.js +0 -1
- package/icons/azure/workflow.js +0 -1
- package/icons/azure/workload-orchestration.js +0 -1
- package/icons/azure/workspace-gateway.js +0 -1
- package/icons/azure/workspaces.js +0 -1
- package/icons/bootstrap/0-circle-fill.js +0 -1
- package/icons/bootstrap/0-circle.js +0 -1
- package/icons/bootstrap/0-square-fill.js +0 -1
- package/icons/bootstrap/0-square.js +0 -1
- package/icons/bootstrap/1-circle-fill.js +0 -1
- package/icons/bootstrap/1-circle.js +0 -1
- package/icons/bootstrap/1-square-fill.js +0 -1
- package/icons/bootstrap/1-square.js +0 -1
- package/icons/bootstrap/123.js +0 -1
- package/icons/bootstrap/2-circle-fill.js +0 -1
- package/icons/bootstrap/2-circle.js +0 -1
- package/icons/bootstrap/2-square-fill.js +0 -1
- package/icons/bootstrap/2-square.js +0 -1
- package/icons/bootstrap/3-circle-fill.js +0 -1
- package/icons/bootstrap/3-circle.js +0 -1
- package/icons/bootstrap/3-square-fill.js +0 -1
- package/icons/bootstrap/3-square.js +0 -1
- package/icons/bootstrap/4-circle-fill.js +0 -1
- package/icons/bootstrap/4-circle.js +0 -1
- package/icons/bootstrap/4-square-fill.js +0 -1
- package/icons/bootstrap/4-square.js +0 -1
- package/icons/bootstrap/5-circle-fill.js +0 -1
- package/icons/bootstrap/5-circle.js +0 -1
- package/icons/bootstrap/5-square-fill.js +0 -1
- package/icons/bootstrap/5-square.js +0 -1
- package/icons/bootstrap/6-circle-fill.js +0 -1
- package/icons/bootstrap/6-circle.js +0 -1
- package/icons/bootstrap/6-square-fill.js +0 -1
- package/icons/bootstrap/6-square.js +0 -1
- package/icons/bootstrap/7-circle-fill.js +0 -1
- package/icons/bootstrap/7-circle.js +0 -1
- package/icons/bootstrap/7-square-fill.js +0 -1
- package/icons/bootstrap/7-square.js +0 -1
- package/icons/bootstrap/8-circle-fill.js +0 -1
- package/icons/bootstrap/8-circle.js +0 -1
- package/icons/bootstrap/8-square-fill.js +0 -1
- package/icons/bootstrap/8-square.js +0 -1
- package/icons/bootstrap/9-circle-fill.js +0 -1
- package/icons/bootstrap/9-circle.js +0 -1
- package/icons/bootstrap/9-square-fill.js +0 -1
- package/icons/bootstrap/9-square.js +0 -1
- package/icons/bootstrap/activity.js +0 -1
- package/icons/bootstrap/airplane-engines-fill.js +0 -1
- package/icons/bootstrap/airplane-engines.js +0 -1
- package/icons/bootstrap/airplane-fill.js +0 -1
- package/icons/bootstrap/airplane.js +0 -1
- package/icons/bootstrap/alarm-fill.js +0 -1
- package/icons/bootstrap/alarm.js +0 -1
- package/icons/bootstrap/alexa.js +0 -1
- package/icons/bootstrap/align-bottom.js +0 -1
- package/icons/bootstrap/align-center.js +0 -1
- package/icons/bootstrap/align-end.js +0 -1
- package/icons/bootstrap/align-middle.js +0 -1
- package/icons/bootstrap/align-start.js +0 -1
- package/icons/bootstrap/align-top.js +0 -1
- package/icons/bootstrap/alipay.js +0 -1
- package/icons/bootstrap/alphabet-uppercase.js +0 -1
- package/icons/bootstrap/alphabet.js +0 -1
- package/icons/bootstrap/alt.js +0 -1
- package/icons/bootstrap/amazon.js +0 -1
- package/icons/bootstrap/amd.js +0 -1
- package/icons/bootstrap/android.js +0 -1
- package/icons/bootstrap/android2.js +0 -1
- package/icons/bootstrap/app-indicator.js +0 -1
- package/icons/bootstrap/app.js +0 -1
- package/icons/bootstrap/apple.js +0 -1
- package/icons/bootstrap/archive-fill.js +0 -1
- package/icons/bootstrap/archive.js +0 -1
- package/icons/bootstrap/arrow-90deg-down.js +0 -1
- package/icons/bootstrap/arrow-90deg-left.js +0 -1
- package/icons/bootstrap/arrow-90deg-right.js +0 -1
- package/icons/bootstrap/arrow-90deg-up.js +0 -1
- package/icons/bootstrap/arrow-bar-down.js +0 -1
- package/icons/bootstrap/arrow-bar-left.js +0 -1
- package/icons/bootstrap/arrow-bar-right.js +0 -1
- package/icons/bootstrap/arrow-bar-up.js +0 -1
- package/icons/bootstrap/arrow-clockwise.js +0 -1
- package/icons/bootstrap/arrow-counterclockwise.js +0 -1
- package/icons/bootstrap/arrow-down-circle-fill.js +0 -1
- package/icons/bootstrap/arrow-down-circle.js +0 -1
- package/icons/bootstrap/arrow-down-left-circle-fill.js +0 -1
- package/icons/bootstrap/arrow-down-left-circle.js +0 -1
- package/icons/bootstrap/arrow-down-left-square-fill.js +0 -1
- package/icons/bootstrap/arrow-down-left-square.js +0 -1
- package/icons/bootstrap/arrow-down-left.js +0 -1
- package/icons/bootstrap/arrow-down-right-circle-fill.js +0 -1
- package/icons/bootstrap/arrow-down-right-circle.js +0 -1
- package/icons/bootstrap/arrow-down-right-square-fill.js +0 -1
- package/icons/bootstrap/arrow-down-right-square.js +0 -1
- package/icons/bootstrap/arrow-down-right.js +0 -1
- package/icons/bootstrap/arrow-down-short.js +0 -1
- package/icons/bootstrap/arrow-down-square-fill.js +0 -1
- package/icons/bootstrap/arrow-down-square.js +0 -1
- package/icons/bootstrap/arrow-down-up.js +0 -1
- package/icons/bootstrap/arrow-down.js +0 -1
- package/icons/bootstrap/arrow-left-circle-fill.js +0 -1
- package/icons/bootstrap/arrow-left-circle.js +0 -1
- package/icons/bootstrap/arrow-left-right.js +0 -1
- package/icons/bootstrap/arrow-left-short.js +0 -1
- package/icons/bootstrap/arrow-left-square-fill.js +0 -1
- package/icons/bootstrap/arrow-left-square.js +0 -1
- package/icons/bootstrap/arrow-left.js +0 -1
- package/icons/bootstrap/arrow-repeat.js +0 -1
- package/icons/bootstrap/arrow-return-left.js +0 -1
- package/icons/bootstrap/arrow-return-right.js +0 -1
- package/icons/bootstrap/arrow-right-circle-fill.js +0 -1
- package/icons/bootstrap/arrow-right-circle.js +0 -1
- package/icons/bootstrap/arrow-right-short.js +0 -1
- package/icons/bootstrap/arrow-right-square-fill.js +0 -1
- package/icons/bootstrap/arrow-right-square.js +0 -1
- package/icons/bootstrap/arrow-right.js +0 -1
- package/icons/bootstrap/arrow-through-heart-fill.js +0 -1
- package/icons/bootstrap/arrow-through-heart.js +0 -1
- package/icons/bootstrap/arrow-up-circle-fill.js +0 -1
- package/icons/bootstrap/arrow-up-circle.js +0 -1
- package/icons/bootstrap/arrow-up-left-circle-fill.js +0 -1
- package/icons/bootstrap/arrow-up-left-circle.js +0 -1
- package/icons/bootstrap/arrow-up-left-square-fill.js +0 -1
- package/icons/bootstrap/arrow-up-left-square.js +0 -1
- package/icons/bootstrap/arrow-up-left.js +0 -1
- package/icons/bootstrap/arrow-up-right-circle-fill.js +0 -1
- package/icons/bootstrap/arrow-up-right-circle.js +0 -1
- package/icons/bootstrap/arrow-up-right-square-fill.js +0 -1
- package/icons/bootstrap/arrow-up-right-square.js +0 -1
- package/icons/bootstrap/arrow-up-right.js +0 -1
- package/icons/bootstrap/arrow-up-short.js +0 -1
- package/icons/bootstrap/arrow-up-square-fill.js +0 -1
- package/icons/bootstrap/arrow-up-square.js +0 -1
- package/icons/bootstrap/arrow-up.js +0 -1
- package/icons/bootstrap/arrows-angle-contract.js +0 -1
- package/icons/bootstrap/arrows-angle-expand.js +0 -1
- package/icons/bootstrap/arrows-collapse-vertical.js +0 -1
- package/icons/bootstrap/arrows-collapse.js +0 -1
- package/icons/bootstrap/arrows-expand-vertical.js +0 -1
- package/icons/bootstrap/arrows-expand.js +0 -1
- package/icons/bootstrap/arrows-fullscreen.js +0 -1
- package/icons/bootstrap/arrows-move.js +0 -1
- package/icons/bootstrap/arrows-vertical.js +0 -1
- package/icons/bootstrap/arrows.js +0 -1
- package/icons/bootstrap/aspect-ratio-fill.js +0 -1
- package/icons/bootstrap/aspect-ratio.js +0 -1
- package/icons/bootstrap/asterisk.js +0 -1
- package/icons/bootstrap/at.js +0 -1
- package/icons/bootstrap/award-fill.js +0 -1
- package/icons/bootstrap/award.js +0 -1
- package/icons/bootstrap/back.js +0 -1
- package/icons/bootstrap/backpack-fill.js +0 -1
- package/icons/bootstrap/backpack.js +0 -1
- package/icons/bootstrap/backpack2-fill.js +0 -1
- package/icons/bootstrap/backpack2.js +0 -1
- package/icons/bootstrap/backpack3-fill.js +0 -1
- package/icons/bootstrap/backpack3.js +0 -1
- package/icons/bootstrap/backpack4-fill.js +0 -1
- package/icons/bootstrap/backpack4.js +0 -1
- package/icons/bootstrap/backspace-fill.js +0 -1
- package/icons/bootstrap/backspace-reverse-fill.js +0 -1
- package/icons/bootstrap/backspace-reverse.js +0 -1
- package/icons/bootstrap/backspace.js +0 -1
- package/icons/bootstrap/badge-3d-fill.js +0 -1
- package/icons/bootstrap/badge-3d.js +0 -1
- package/icons/bootstrap/badge-4k-fill.js +0 -1
- package/icons/bootstrap/badge-4k.js +0 -1
- package/icons/bootstrap/badge-8k-fill.js +0 -1
- package/icons/bootstrap/badge-8k.js +0 -1
- package/icons/bootstrap/badge-ad-fill.js +0 -1
- package/icons/bootstrap/badge-ad.js +0 -1
- package/icons/bootstrap/badge-ar-fill.js +0 -1
- package/icons/bootstrap/badge-ar.js +0 -1
- package/icons/bootstrap/badge-cc-fill.js +0 -1
- package/icons/bootstrap/badge-cc.js +0 -1
- package/icons/bootstrap/badge-hd-fill.js +0 -1
- package/icons/bootstrap/badge-hd.js +0 -1
- package/icons/bootstrap/badge-sd-fill.js +0 -1
- package/icons/bootstrap/badge-sd.js +0 -1
- package/icons/bootstrap/badge-tm-fill.js +0 -1
- package/icons/bootstrap/badge-tm.js +0 -1
- package/icons/bootstrap/badge-vo-fill.js +0 -1
- package/icons/bootstrap/badge-vo.js +0 -1
- package/icons/bootstrap/badge-vr-fill.js +0 -1
- package/icons/bootstrap/badge-vr.js +0 -1
- package/icons/bootstrap/badge-wc-fill.js +0 -1
- package/icons/bootstrap/badge-wc.js +0 -1
- package/icons/bootstrap/bag-check-fill.js +0 -1
- package/icons/bootstrap/bag-check.js +0 -1
- package/icons/bootstrap/bag-dash-fill.js +0 -1
- package/icons/bootstrap/bag-dash.js +0 -1
- package/icons/bootstrap/bag-fill.js +0 -1
- package/icons/bootstrap/bag-heart-fill.js +0 -1
- package/icons/bootstrap/bag-heart.js +0 -1
- package/icons/bootstrap/bag-plus-fill.js +0 -1
- package/icons/bootstrap/bag-plus.js +0 -1
- package/icons/bootstrap/bag-x-fill.js +0 -1
- package/icons/bootstrap/bag-x.js +0 -1
- package/icons/bootstrap/bag.js +0 -1
- package/icons/bootstrap/balloon-fill.js +0 -1
- package/icons/bootstrap/balloon-heart-fill.js +0 -1
- package/icons/bootstrap/balloon-heart.js +0 -1
- package/icons/bootstrap/balloon.js +0 -1
- package/icons/bootstrap/ban-fill.js +0 -1
- package/icons/bootstrap/ban.js +0 -1
- package/icons/bootstrap/bandaid-fill.js +0 -1
- package/icons/bootstrap/bandaid.js +0 -1
- package/icons/bootstrap/bank.js +0 -1
- package/icons/bootstrap/bank2.js +0 -1
- package/icons/bootstrap/bar-chart-fill.js +0 -1
- package/icons/bootstrap/bar-chart-line-fill.js +0 -1
- package/icons/bootstrap/bar-chart-line.js +0 -1
- package/icons/bootstrap/bar-chart-steps.js +0 -1
- package/icons/bootstrap/bar-chart.js +0 -1
- package/icons/bootstrap/basket-fill.js +0 -1
- package/icons/bootstrap/basket.js +0 -1
- package/icons/bootstrap/basket2-fill.js +0 -1
- package/icons/bootstrap/basket2.js +0 -1
- package/icons/bootstrap/basket3-fill.js +0 -1
- package/icons/bootstrap/basket3.js +0 -1
- package/icons/bootstrap/battery-charging.js +0 -1
- package/icons/bootstrap/battery-full.js +0 -1
- package/icons/bootstrap/battery-half.js +0 -1
- package/icons/bootstrap/battery.js +0 -1
- package/icons/bootstrap/behance.js +0 -1
- package/icons/bootstrap/bell-fill.js +0 -1
- package/icons/bootstrap/bell-slash-fill.js +0 -1
- package/icons/bootstrap/bell-slash.js +0 -1
- package/icons/bootstrap/bell.js +0 -1
- package/icons/bootstrap/bezier.js +0 -1
- package/icons/bootstrap/bezier2.js +0 -1
- package/icons/bootstrap/bicycle.js +0 -1
- package/icons/bootstrap/bing.js +0 -1
- package/icons/bootstrap/binoculars-fill.js +0 -1
- package/icons/bootstrap/binoculars.js +0 -1
- package/icons/bootstrap/blockquote-left.js +0 -1
- package/icons/bootstrap/blockquote-right.js +0 -1
- package/icons/bootstrap/bluetooth.js +0 -1
- package/icons/bootstrap/body-text.js +0 -1
- package/icons/bootstrap/book-fill.js +0 -1
- package/icons/bootstrap/book-half.js +0 -1
- package/icons/bootstrap/book.js +0 -1
- package/icons/bootstrap/bookmark-check-fill.js +0 -1
- package/icons/bootstrap/bookmark-check.js +0 -1
- package/icons/bootstrap/bookmark-dash-fill.js +0 -1
- package/icons/bootstrap/bookmark-dash.js +0 -1
- package/icons/bootstrap/bookmark-fill.js +0 -1
- package/icons/bootstrap/bookmark-heart-fill.js +0 -1
- package/icons/bootstrap/bookmark-heart.js +0 -1
- package/icons/bootstrap/bookmark-plus-fill.js +0 -1
- package/icons/bootstrap/bookmark-plus.js +0 -1
- package/icons/bootstrap/bookmark-star-fill.js +0 -1
- package/icons/bootstrap/bookmark-star.js +0 -1
- package/icons/bootstrap/bookmark-x-fill.js +0 -1
- package/icons/bootstrap/bookmark-x.js +0 -1
- package/icons/bootstrap/bookmark.js +0 -1
- package/icons/bootstrap/bookmarks-fill.js +0 -1
- package/icons/bootstrap/bookmarks.js +0 -1
- package/icons/bootstrap/bookshelf.js +0 -1
- package/icons/bootstrap/boombox-fill.js +0 -1
- package/icons/bootstrap/boombox.js +0 -1
- package/icons/bootstrap/bootstrap-fill.js +0 -1
- package/icons/bootstrap/bootstrap-icons.js +0 -1
- package/icons/bootstrap/bootstrap-reboot.js +0 -1
- package/icons/bootstrap/bootstrap.js +0 -1
- package/icons/bootstrap/border-all.js +0 -1
- package/icons/bootstrap/border-bottom.js +0 -1
- package/icons/bootstrap/border-center.js +0 -1
- package/icons/bootstrap/border-inner.js +0 -1
- package/icons/bootstrap/border-left.js +0 -1
- package/icons/bootstrap/border-middle.js +0 -1
- package/icons/bootstrap/border-outer.js +0 -1
- package/icons/bootstrap/border-right.js +0 -1
- package/icons/bootstrap/border-style.js +0 -1
- package/icons/bootstrap/border-top.js +0 -1
- package/icons/bootstrap/border-width.js +0 -1
- package/icons/bootstrap/border.js +0 -1
- package/icons/bootstrap/bounding-box-circles.js +0 -1
- package/icons/bootstrap/bounding-box.js +0 -1
- package/icons/bootstrap/box-arrow-down-left.js +0 -1
- package/icons/bootstrap/box-arrow-down-right.js +0 -1
- package/icons/bootstrap/box-arrow-down.js +0 -1
- package/icons/bootstrap/box-arrow-in-down-left.js +0 -1
- package/icons/bootstrap/box-arrow-in-down-right.js +0 -1
- package/icons/bootstrap/box-arrow-in-down.js +0 -1
- package/icons/bootstrap/box-arrow-in-left.js +0 -1
- package/icons/bootstrap/box-arrow-in-right.js +0 -1
- package/icons/bootstrap/box-arrow-in-up-left.js +0 -1
- package/icons/bootstrap/box-arrow-in-up-right.js +0 -1
- package/icons/bootstrap/box-arrow-in-up.js +0 -1
- package/icons/bootstrap/box-arrow-left.js +0 -1
- package/icons/bootstrap/box-arrow-right.js +0 -1
- package/icons/bootstrap/box-arrow-up-left.js +0 -1
- package/icons/bootstrap/box-arrow-up-right.js +0 -1
- package/icons/bootstrap/box-arrow-up.js +0 -1
- package/icons/bootstrap/box-fill.js +0 -1
- package/icons/bootstrap/box-seam-fill.js +0 -1
- package/icons/bootstrap/box-seam.js +0 -1
- package/icons/bootstrap/box.js +0 -1
- package/icons/bootstrap/box2-fill.js +0 -1
- package/icons/bootstrap/box2-heart-fill.js +0 -1
- package/icons/bootstrap/box2-heart.js +0 -1
- package/icons/bootstrap/box2.js +0 -1
- package/icons/bootstrap/boxes.js +0 -1
- package/icons/bootstrap/braces-asterisk.js +0 -1
- package/icons/bootstrap/braces.js +0 -1
- package/icons/bootstrap/bricks.js +0 -1
- package/icons/bootstrap/briefcase-fill.js +0 -1
- package/icons/bootstrap/briefcase.js +0 -1
- package/icons/bootstrap/brightness-alt-high-fill.js +0 -1
- package/icons/bootstrap/brightness-alt-high.js +0 -1
- package/icons/bootstrap/brightness-alt-low-fill.js +0 -1
- package/icons/bootstrap/brightness-alt-low.js +0 -1
- package/icons/bootstrap/brightness-high-fill.js +0 -1
- package/icons/bootstrap/brightness-high.js +0 -1
- package/icons/bootstrap/brightness-low-fill.js +0 -1
- package/icons/bootstrap/brightness-low.js +0 -1
- package/icons/bootstrap/brilliance.js +0 -1
- package/icons/bootstrap/broadcast-pin.js +0 -1
- package/icons/bootstrap/broadcast.js +0 -1
- package/icons/bootstrap/browser-chrome.js +0 -1
- package/icons/bootstrap/browser-edge.js +0 -1
- package/icons/bootstrap/browser-firefox.js +0 -1
- package/icons/bootstrap/browser-safari.js +0 -1
- package/icons/bootstrap/brush-fill.js +0 -1
- package/icons/bootstrap/brush.js +0 -1
- package/icons/bootstrap/bucket-fill.js +0 -1
- package/icons/bootstrap/bucket.js +0 -1
- package/icons/bootstrap/bug-fill.js +0 -1
- package/icons/bootstrap/bug.js +0 -1
- package/icons/bootstrap/building-add.js +0 -1
- package/icons/bootstrap/building-check.js +0 -1
- package/icons/bootstrap/building-dash.js +0 -1
- package/icons/bootstrap/building-down.js +0 -1
- package/icons/bootstrap/building-exclamation.js +0 -1
- package/icons/bootstrap/building-fill-add.js +0 -1
- package/icons/bootstrap/building-fill-check.js +0 -1
- package/icons/bootstrap/building-fill-dash.js +0 -1
- package/icons/bootstrap/building-fill-down.js +0 -1
- package/icons/bootstrap/building-fill-exclamation.js +0 -1
- package/icons/bootstrap/building-fill-gear.js +0 -1
- package/icons/bootstrap/building-fill-lock.js +0 -1
- package/icons/bootstrap/building-fill-slash.js +0 -1
- package/icons/bootstrap/building-fill-up.js +0 -1
- package/icons/bootstrap/building-fill-x.js +0 -1
- package/icons/bootstrap/building-fill.js +0 -1
- package/icons/bootstrap/building-gear.js +0 -1
- package/icons/bootstrap/building-lock.js +0 -1
- package/icons/bootstrap/building-slash.js +0 -1
- package/icons/bootstrap/building-up.js +0 -1
- package/icons/bootstrap/building-x.js +0 -1
- package/icons/bootstrap/building.js +0 -1
- package/icons/bootstrap/buildings-fill.js +0 -1
- package/icons/bootstrap/buildings.js +0 -1
- package/icons/bootstrap/bullseye.js +0 -1
- package/icons/bootstrap/bus-front-fill.js +0 -1
- package/icons/bootstrap/bus-front.js +0 -1
- package/icons/bootstrap/c-circle-fill.js +0 -1
- package/icons/bootstrap/c-circle.js +0 -1
- package/icons/bootstrap/c-square-fill.js +0 -1
- package/icons/bootstrap/c-square.js +0 -1
- package/icons/bootstrap/cake-fill.js +0 -1
- package/icons/bootstrap/cake.js +0 -1
- package/icons/bootstrap/cake2-fill.js +0 -1
- package/icons/bootstrap/cake2.js +0 -1
- package/icons/bootstrap/calculator-fill.js +0 -1
- package/icons/bootstrap/calculator.js +0 -1
- package/icons/bootstrap/calendar-check-fill.js +0 -1
- package/icons/bootstrap/calendar-check.js +0 -1
- package/icons/bootstrap/calendar-date-fill.js +0 -1
- package/icons/bootstrap/calendar-date.js +0 -1
- package/icons/bootstrap/calendar-day-fill.js +0 -1
- package/icons/bootstrap/calendar-day.js +0 -1
- package/icons/bootstrap/calendar-event-fill.js +0 -1
- package/icons/bootstrap/calendar-event.js +0 -1
- package/icons/bootstrap/calendar-fill.js +0 -1
- package/icons/bootstrap/calendar-heart-fill.js +0 -1
- package/icons/bootstrap/calendar-heart.js +0 -1
- package/icons/bootstrap/calendar-minus-fill.js +0 -1
- package/icons/bootstrap/calendar-minus.js +0 -1
- package/icons/bootstrap/calendar-month-fill.js +0 -1
- package/icons/bootstrap/calendar-month.js +0 -1
- package/icons/bootstrap/calendar-plus-fill.js +0 -1
- package/icons/bootstrap/calendar-plus.js +0 -1
- package/icons/bootstrap/calendar-range-fill.js +0 -1
- package/icons/bootstrap/calendar-range.js +0 -1
- package/icons/bootstrap/calendar-week-fill.js +0 -1
- package/icons/bootstrap/calendar-week.js +0 -1
- package/icons/bootstrap/calendar-x-fill.js +0 -1
- package/icons/bootstrap/calendar-x.js +0 -1
- package/icons/bootstrap/calendar.js +0 -1
- package/icons/bootstrap/calendar2-check-fill.js +0 -1
- package/icons/bootstrap/calendar2-check.js +0 -1
- package/icons/bootstrap/calendar2-date-fill.js +0 -1
- package/icons/bootstrap/calendar2-date.js +0 -1
- package/icons/bootstrap/calendar2-day-fill.js +0 -1
- package/icons/bootstrap/calendar2-day.js +0 -1
- package/icons/bootstrap/calendar2-event-fill.js +0 -1
- package/icons/bootstrap/calendar2-event.js +0 -1
- package/icons/bootstrap/calendar2-fill.js +0 -1
- package/icons/bootstrap/calendar2-heart-fill.js +0 -1
- package/icons/bootstrap/calendar2-heart.js +0 -1
- package/icons/bootstrap/calendar2-minus-fill.js +0 -1
- package/icons/bootstrap/calendar2-minus.js +0 -1
- package/icons/bootstrap/calendar2-month-fill.js +0 -1
- package/icons/bootstrap/calendar2-month.js +0 -1
- package/icons/bootstrap/calendar2-plus-fill.js +0 -1
- package/icons/bootstrap/calendar2-plus.js +0 -1
- package/icons/bootstrap/calendar2-range-fill.js +0 -1
- package/icons/bootstrap/calendar2-range.js +0 -1
- package/icons/bootstrap/calendar2-week-fill.js +0 -1
- package/icons/bootstrap/calendar2-week.js +0 -1
- package/icons/bootstrap/calendar2-x-fill.js +0 -1
- package/icons/bootstrap/calendar2-x.js +0 -1
- package/icons/bootstrap/calendar2.js +0 -1
- package/icons/bootstrap/calendar3-event-fill.js +0 -1
- package/icons/bootstrap/calendar3-event.js +0 -1
- package/icons/bootstrap/calendar3-fill.js +0 -1
- package/icons/bootstrap/calendar3-range-fill.js +0 -1
- package/icons/bootstrap/calendar3-range.js +0 -1
- package/icons/bootstrap/calendar3-week-fill.js +0 -1
- package/icons/bootstrap/calendar3-week.js +0 -1
- package/icons/bootstrap/calendar3.js +0 -1
- package/icons/bootstrap/calendar4-event.js +0 -1
- package/icons/bootstrap/calendar4-range.js +0 -1
- package/icons/bootstrap/calendar4-week.js +0 -1
- package/icons/bootstrap/calendar4.js +0 -1
- package/icons/bootstrap/camera-fill.js +0 -1
- package/icons/bootstrap/camera-reels-fill.js +0 -1
- package/icons/bootstrap/camera-reels.js +0 -1
- package/icons/bootstrap/camera-video-fill.js +0 -1
- package/icons/bootstrap/camera-video-off-fill.js +0 -1
- package/icons/bootstrap/camera-video-off.js +0 -1
- package/icons/bootstrap/camera-video.js +0 -1
- package/icons/bootstrap/camera.js +0 -1
- package/icons/bootstrap/camera2.js +0 -1
- package/icons/bootstrap/capslock-fill.js +0 -1
- package/icons/bootstrap/capslock.js +0 -1
- package/icons/bootstrap/capsule-pill.js +0 -1
- package/icons/bootstrap/capsule.js +0 -1
- package/icons/bootstrap/car-front-fill.js +0 -1
- package/icons/bootstrap/car-front.js +0 -1
- package/icons/bootstrap/card-checklist.js +0 -1
- package/icons/bootstrap/card-heading.js +0 -1
- package/icons/bootstrap/card-image.js +0 -1
- package/icons/bootstrap/card-list.js +0 -1
- package/icons/bootstrap/card-text.js +0 -1
- package/icons/bootstrap/caret-down-fill.js +0 -1
- package/icons/bootstrap/caret-down-square-fill.js +0 -1
- package/icons/bootstrap/caret-down-square.js +0 -1
- package/icons/bootstrap/caret-down.js +0 -1
- package/icons/bootstrap/caret-left-fill.js +0 -1
- package/icons/bootstrap/caret-left-square-fill.js +0 -1
- package/icons/bootstrap/caret-left-square.js +0 -1
- package/icons/bootstrap/caret-left.js +0 -1
- package/icons/bootstrap/caret-right-fill.js +0 -1
- package/icons/bootstrap/caret-right-square-fill.js +0 -1
- package/icons/bootstrap/caret-right-square.js +0 -1
- package/icons/bootstrap/caret-right.js +0 -1
- package/icons/bootstrap/caret-up-fill.js +0 -1
- package/icons/bootstrap/caret-up-square-fill.js +0 -1
- package/icons/bootstrap/caret-up-square.js +0 -1
- package/icons/bootstrap/caret-up.js +0 -1
- package/icons/bootstrap/cart-check-fill.js +0 -1
- package/icons/bootstrap/cart-check.js +0 -1
- package/icons/bootstrap/cart-dash-fill.js +0 -1
- package/icons/bootstrap/cart-dash.js +0 -1
- package/icons/bootstrap/cart-fill.js +0 -1
- package/icons/bootstrap/cart-plus-fill.js +0 -1
- package/icons/bootstrap/cart-plus.js +0 -1
- package/icons/bootstrap/cart-x-fill.js +0 -1
- package/icons/bootstrap/cart-x.js +0 -1
- package/icons/bootstrap/cart.js +0 -1
- package/icons/bootstrap/cart2.js +0 -1
- package/icons/bootstrap/cart3.js +0 -1
- package/icons/bootstrap/cart4.js +0 -1
- package/icons/bootstrap/cash-coin.js +0 -1
- package/icons/bootstrap/cash-stack.js +0 -1
- package/icons/bootstrap/cash.js +0 -1
- package/icons/bootstrap/cassette-fill.js +0 -1
- package/icons/bootstrap/cassette.js +0 -1
- package/icons/bootstrap/cast.js +0 -1
- package/icons/bootstrap/cc-circle-fill.js +0 -1
- package/icons/bootstrap/cc-circle.js +0 -1
- package/icons/bootstrap/cc-square-fill.js +0 -1
- package/icons/bootstrap/cc-square.js +0 -1
- package/icons/bootstrap/chat-dots-fill.js +0 -1
- package/icons/bootstrap/chat-dots.js +0 -1
- package/icons/bootstrap/chat-fill.js +0 -1
- package/icons/bootstrap/chat-heart-fill.js +0 -1
- package/icons/bootstrap/chat-heart.js +0 -1
- package/icons/bootstrap/chat-left-dots-fill.js +0 -1
- package/icons/bootstrap/chat-left-dots.js +0 -1
- package/icons/bootstrap/chat-left-fill.js +0 -1
- package/icons/bootstrap/chat-left-heart-fill.js +0 -1
- package/icons/bootstrap/chat-left-heart.js +0 -1
- package/icons/bootstrap/chat-left-quote-fill.js +0 -1
- package/icons/bootstrap/chat-left-quote.js +0 -1
- package/icons/bootstrap/chat-left-text-fill.js +0 -1
- package/icons/bootstrap/chat-left-text.js +0 -1
- package/icons/bootstrap/chat-left.js +0 -1
- package/icons/bootstrap/chat-quote-fill.js +0 -1
- package/icons/bootstrap/chat-quote.js +0 -1
- package/icons/bootstrap/chat-right-dots-fill.js +0 -1
- package/icons/bootstrap/chat-right-dots.js +0 -1
- package/icons/bootstrap/chat-right-fill.js +0 -1
- package/icons/bootstrap/chat-right-heart-fill.js +0 -1
- package/icons/bootstrap/chat-right-heart.js +0 -1
- package/icons/bootstrap/chat-right-quote-fill.js +0 -1
- package/icons/bootstrap/chat-right-quote.js +0 -1
- package/icons/bootstrap/chat-right-text-fill.js +0 -1
- package/icons/bootstrap/chat-right-text.js +0 -1
- package/icons/bootstrap/chat-right.js +0 -1
- package/icons/bootstrap/chat-square-dots-fill.js +0 -1
- package/icons/bootstrap/chat-square-dots.js +0 -1
- package/icons/bootstrap/chat-square-fill.js +0 -1
- package/icons/bootstrap/chat-square-heart-fill.js +0 -1
- package/icons/bootstrap/chat-square-heart.js +0 -1
- package/icons/bootstrap/chat-square-quote-fill.js +0 -1
- package/icons/bootstrap/chat-square-quote.js +0 -1
- package/icons/bootstrap/chat-square-text-fill.js +0 -1
- package/icons/bootstrap/chat-square-text.js +0 -1
- package/icons/bootstrap/chat-square.js +0 -1
- package/icons/bootstrap/chat-text-fill.js +0 -1
- package/icons/bootstrap/chat-text.js +0 -1
- package/icons/bootstrap/chat.js +0 -1
- package/icons/bootstrap/check-all.js +0 -1
- package/icons/bootstrap/check-circle-fill.js +0 -1
- package/icons/bootstrap/check-circle.js +0 -1
- package/icons/bootstrap/check-lg.js +0 -1
- package/icons/bootstrap/check-square-fill.js +0 -1
- package/icons/bootstrap/check-square.js +0 -1
- package/icons/bootstrap/check.js +0 -1
- package/icons/bootstrap/check2-all.js +0 -1
- package/icons/bootstrap/check2-circle.js +0 -1
- package/icons/bootstrap/check2-square.js +0 -1
- package/icons/bootstrap/check2.js +0 -1
- package/icons/bootstrap/chevron-bar-contract.js +0 -1
- package/icons/bootstrap/chevron-bar-down.js +0 -1
- package/icons/bootstrap/chevron-bar-expand.js +0 -1
- package/icons/bootstrap/chevron-bar-left.js +0 -1
- package/icons/bootstrap/chevron-bar-right.js +0 -1
- package/icons/bootstrap/chevron-bar-up.js +0 -1
- package/icons/bootstrap/chevron-compact-down.js +0 -1
- package/icons/bootstrap/chevron-compact-left.js +0 -1
- package/icons/bootstrap/chevron-compact-right.js +0 -1
- package/icons/bootstrap/chevron-compact-up.js +0 -1
- package/icons/bootstrap/chevron-contract.js +0 -1
- package/icons/bootstrap/chevron-double-down.js +0 -1
- package/icons/bootstrap/chevron-double-left.js +0 -1
- package/icons/bootstrap/chevron-double-right.js +0 -1
- package/icons/bootstrap/chevron-double-up.js +0 -1
- package/icons/bootstrap/chevron-down.js +0 -1
- package/icons/bootstrap/chevron-expand.js +0 -1
- package/icons/bootstrap/chevron-left.js +0 -1
- package/icons/bootstrap/chevron-right.js +0 -1
- package/icons/bootstrap/chevron-up.js +0 -1
- package/icons/bootstrap/circle-fill.js +0 -1
- package/icons/bootstrap/circle-half.js +0 -1
- package/icons/bootstrap/circle-square.js +0 -1
- package/icons/bootstrap/circle.js +0 -1
- package/icons/bootstrap/clipboard-check-fill.js +0 -1
- package/icons/bootstrap/clipboard-check.js +0 -1
- package/icons/bootstrap/clipboard-data-fill.js +0 -1
- package/icons/bootstrap/clipboard-data.js +0 -1
- package/icons/bootstrap/clipboard-fill.js +0 -1
- package/icons/bootstrap/clipboard-heart-fill.js +0 -1
- package/icons/bootstrap/clipboard-heart.js +0 -1
- package/icons/bootstrap/clipboard-minus-fill.js +0 -1
- package/icons/bootstrap/clipboard-minus.js +0 -1
- package/icons/bootstrap/clipboard-plus-fill.js +0 -1
- package/icons/bootstrap/clipboard-plus.js +0 -1
- package/icons/bootstrap/clipboard-pulse.js +0 -1
- package/icons/bootstrap/clipboard-x-fill.js +0 -1
- package/icons/bootstrap/clipboard-x.js +0 -1
- package/icons/bootstrap/clipboard.js +0 -1
- package/icons/bootstrap/clipboard2-check-fill.js +0 -1
- package/icons/bootstrap/clipboard2-check.js +0 -1
- package/icons/bootstrap/clipboard2-data-fill.js +0 -1
- package/icons/bootstrap/clipboard2-data.js +0 -1
- package/icons/bootstrap/clipboard2-fill.js +0 -1
- package/icons/bootstrap/clipboard2-heart-fill.js +0 -1
- package/icons/bootstrap/clipboard2-heart.js +0 -1
- package/icons/bootstrap/clipboard2-minus-fill.js +0 -1
- package/icons/bootstrap/clipboard2-minus.js +0 -1
- package/icons/bootstrap/clipboard2-plus-fill.js +0 -1
- package/icons/bootstrap/clipboard2-plus.js +0 -1
- package/icons/bootstrap/clipboard2-pulse-fill.js +0 -1
- package/icons/bootstrap/clipboard2-pulse.js +0 -1
- package/icons/bootstrap/clipboard2-x-fill.js +0 -1
- package/icons/bootstrap/clipboard2-x.js +0 -1
- package/icons/bootstrap/clipboard2.js +0 -1
- package/icons/bootstrap/clock-fill.js +0 -1
- package/icons/bootstrap/clock-history.js +0 -1
- package/icons/bootstrap/clock.js +0 -1
- package/icons/bootstrap/cloud-arrow-down-fill.js +0 -1
- package/icons/bootstrap/cloud-arrow-down.js +0 -1
- package/icons/bootstrap/cloud-arrow-up-fill.js +0 -1
- package/icons/bootstrap/cloud-arrow-up.js +0 -1
- package/icons/bootstrap/cloud-check-fill.js +0 -1
- package/icons/bootstrap/cloud-check.js +0 -1
- package/icons/bootstrap/cloud-download-fill.js +0 -1
- package/icons/bootstrap/cloud-download.js +0 -1
- package/icons/bootstrap/cloud-drizzle-fill.js +0 -1
- package/icons/bootstrap/cloud-drizzle.js +0 -1
- package/icons/bootstrap/cloud-fill.js +0 -1
- package/icons/bootstrap/cloud-fog-fill.js +0 -1
- package/icons/bootstrap/cloud-fog.js +0 -1
- package/icons/bootstrap/cloud-fog2-fill.js +0 -1
- package/icons/bootstrap/cloud-fog2.js +0 -1
- package/icons/bootstrap/cloud-hail-fill.js +0 -1
- package/icons/bootstrap/cloud-hail.js +0 -1
- package/icons/bootstrap/cloud-haze-fill.js +0 -1
- package/icons/bootstrap/cloud-haze.js +0 -1
- package/icons/bootstrap/cloud-haze2-fill.js +0 -1
- package/icons/bootstrap/cloud-haze2.js +0 -1
- package/icons/bootstrap/cloud-lightning-fill.js +0 -1
- package/icons/bootstrap/cloud-lightning-rain-fill.js +0 -1
- package/icons/bootstrap/cloud-lightning-rain.js +0 -1
- package/icons/bootstrap/cloud-lightning.js +0 -1
- package/icons/bootstrap/cloud-minus-fill.js +0 -1
- package/icons/bootstrap/cloud-minus.js +0 -1
- package/icons/bootstrap/cloud-moon-fill.js +0 -1
- package/icons/bootstrap/cloud-moon.js +0 -1
- package/icons/bootstrap/cloud-plus-fill.js +0 -1
- package/icons/bootstrap/cloud-plus.js +0 -1
- package/icons/bootstrap/cloud-rain-fill.js +0 -1
- package/icons/bootstrap/cloud-rain-heavy-fill.js +0 -1
- package/icons/bootstrap/cloud-rain-heavy.js +0 -1
- package/icons/bootstrap/cloud-rain.js +0 -1
- package/icons/bootstrap/cloud-slash-fill.js +0 -1
- package/icons/bootstrap/cloud-slash.js +0 -1
- package/icons/bootstrap/cloud-sleet-fill.js +0 -1
- package/icons/bootstrap/cloud-sleet.js +0 -1
- package/icons/bootstrap/cloud-snow-fill.js +0 -1
- package/icons/bootstrap/cloud-snow.js +0 -1
- package/icons/bootstrap/cloud-sun-fill.js +0 -1
- package/icons/bootstrap/cloud-sun.js +0 -1
- package/icons/bootstrap/cloud-upload-fill.js +0 -1
- package/icons/bootstrap/cloud-upload.js +0 -1
- package/icons/bootstrap/cloud.js +0 -1
- package/icons/bootstrap/clouds-fill.js +0 -1
- package/icons/bootstrap/clouds.js +0 -1
- package/icons/bootstrap/cloudy-fill.js +0 -1
- package/icons/bootstrap/cloudy.js +0 -1
- package/icons/bootstrap/code-slash.js +0 -1
- package/icons/bootstrap/code-square.js +0 -1
- package/icons/bootstrap/code.js +0 -1
- package/icons/bootstrap/coin.js +0 -1
- package/icons/bootstrap/collection-fill.js +0 -1
- package/icons/bootstrap/collection-play-fill.js +0 -1
- package/icons/bootstrap/collection-play.js +0 -1
- package/icons/bootstrap/collection.js +0 -1
- package/icons/bootstrap/columns-gap.js +0 -1
- package/icons/bootstrap/columns.js +0 -1
- package/icons/bootstrap/command.js +0 -1
- package/icons/bootstrap/compass-fill.js +0 -1
- package/icons/bootstrap/compass.js +0 -1
- package/icons/bootstrap/cone-striped.js +0 -1
- package/icons/bootstrap/cone.js +0 -1
- package/icons/bootstrap/controller.js +0 -1
- package/icons/bootstrap/cookie.js +0 -1
- package/icons/bootstrap/copy.js +0 -1
- package/icons/bootstrap/cpu-fill.js +0 -1
- package/icons/bootstrap/cpu.js +0 -1
- package/icons/bootstrap/credit-card-2-back-fill.js +0 -1
- package/icons/bootstrap/credit-card-2-back.js +0 -1
- package/icons/bootstrap/credit-card-2-front-fill.js +0 -1
- package/icons/bootstrap/credit-card-2-front.js +0 -1
- package/icons/bootstrap/credit-card-fill.js +0 -1
- package/icons/bootstrap/credit-card.js +0 -1
- package/icons/bootstrap/crop.js +0 -1
- package/icons/bootstrap/crosshair.js +0 -1
- package/icons/bootstrap/crosshair2.js +0 -1
- package/icons/bootstrap/cup-fill.js +0 -1
- package/icons/bootstrap/cup-hot-fill.js +0 -1
- package/icons/bootstrap/cup-hot.js +0 -1
- package/icons/bootstrap/cup-straw.js +0 -1
- package/icons/bootstrap/cup.js +0 -1
- package/icons/bootstrap/currency-bitcoin.js +0 -1
- package/icons/bootstrap/currency-dollar.js +0 -1
- package/icons/bootstrap/currency-euro.js +0 -1
- package/icons/bootstrap/currency-exchange.js +0 -1
- package/icons/bootstrap/currency-pound.js +0 -1
- package/icons/bootstrap/currency-rupee.js +0 -1
- package/icons/bootstrap/currency-yen.js +0 -1
- package/icons/bootstrap/cursor-fill.js +0 -1
- package/icons/bootstrap/cursor-text.js +0 -1
- package/icons/bootstrap/cursor.js +0 -1
- package/icons/bootstrap/dash-circle-dotted.js +0 -1
- package/icons/bootstrap/dash-circle-fill.js +0 -1
- package/icons/bootstrap/dash-circle.js +0 -1
- package/icons/bootstrap/dash-lg.js +0 -1
- package/icons/bootstrap/dash-square-dotted.js +0 -1
- package/icons/bootstrap/dash-square-fill.js +0 -1
- package/icons/bootstrap/dash-square.js +0 -1
- package/icons/bootstrap/dash.js +0 -1
- package/icons/bootstrap/database-add.js +0 -1
- package/icons/bootstrap/database-check.js +0 -1
- package/icons/bootstrap/database-dash.js +0 -1
- package/icons/bootstrap/database-down.js +0 -1
- package/icons/bootstrap/database-exclamation.js +0 -1
- package/icons/bootstrap/database-fill-add.js +0 -1
- package/icons/bootstrap/database-fill-check.js +0 -1
- package/icons/bootstrap/database-fill-dash.js +0 -1
- package/icons/bootstrap/database-fill-down.js +0 -1
- package/icons/bootstrap/database-fill-exclamation.js +0 -1
- package/icons/bootstrap/database-fill-gear.js +0 -1
- package/icons/bootstrap/database-fill-lock.js +0 -1
- package/icons/bootstrap/database-fill-slash.js +0 -1
- package/icons/bootstrap/database-fill-up.js +0 -1
- package/icons/bootstrap/database-fill-x.js +0 -1
- package/icons/bootstrap/database-fill.js +0 -1
- package/icons/bootstrap/database-gear.js +0 -1
- package/icons/bootstrap/database-lock.js +0 -1
- package/icons/bootstrap/database-slash.js +0 -1
- package/icons/bootstrap/database-up.js +0 -1
- package/icons/bootstrap/database-x.js +0 -1
- package/icons/bootstrap/database.js +0 -1
- package/icons/bootstrap/device-hdd-fill.js +0 -1
- package/icons/bootstrap/device-hdd.js +0 -1
- package/icons/bootstrap/device-ssd-fill.js +0 -1
- package/icons/bootstrap/device-ssd.js +0 -1
- package/icons/bootstrap/diagram-2-fill.js +0 -1
- package/icons/bootstrap/diagram-2.js +0 -1
- package/icons/bootstrap/diagram-3-fill.js +0 -1
- package/icons/bootstrap/diagram-3.js +0 -1
- package/icons/bootstrap/diamond-fill.js +0 -1
- package/icons/bootstrap/diamond-half.js +0 -1
- package/icons/bootstrap/diamond.js +0 -1
- package/icons/bootstrap/dice-1-fill.js +0 -1
- package/icons/bootstrap/dice-1.js +0 -1
- package/icons/bootstrap/dice-2-fill.js +0 -1
- package/icons/bootstrap/dice-2.js +0 -1
- package/icons/bootstrap/dice-3-fill.js +0 -1
- package/icons/bootstrap/dice-3.js +0 -1
- package/icons/bootstrap/dice-4-fill.js +0 -1
- package/icons/bootstrap/dice-4.js +0 -1
- package/icons/bootstrap/dice-5-fill.js +0 -1
- package/icons/bootstrap/dice-5.js +0 -1
- package/icons/bootstrap/dice-6-fill.js +0 -1
- package/icons/bootstrap/dice-6.js +0 -1
- package/icons/bootstrap/disc-fill.js +0 -1
- package/icons/bootstrap/disc.js +0 -1
- package/icons/bootstrap/discord.js +0 -1
- package/icons/bootstrap/display-fill.js +0 -1
- package/icons/bootstrap/display.js +0 -1
- package/icons/bootstrap/displayport-fill.js +0 -1
- package/icons/bootstrap/displayport.js +0 -1
- package/icons/bootstrap/distribute-horizontal.js +0 -1
- package/icons/bootstrap/distribute-vertical.js +0 -1
- package/icons/bootstrap/door-closed-fill.js +0 -1
- package/icons/bootstrap/door-closed.js +0 -1
- package/icons/bootstrap/door-open-fill.js +0 -1
- package/icons/bootstrap/door-open.js +0 -1
- package/icons/bootstrap/dot.js +0 -1
- package/icons/bootstrap/download.js +0 -1
- package/icons/bootstrap/dpad-fill.js +0 -1
- package/icons/bootstrap/dpad.js +0 -1
- package/icons/bootstrap/dribbble.js +0 -1
- package/icons/bootstrap/dropbox.js +0 -1
- package/icons/bootstrap/droplet-fill.js +0 -1
- package/icons/bootstrap/droplet-half.js +0 -1
- package/icons/bootstrap/droplet.js +0 -1
- package/icons/bootstrap/duffle-fill.js +0 -1
- package/icons/bootstrap/duffle.js +0 -1
- package/icons/bootstrap/ear-fill.js +0 -1
- package/icons/bootstrap/ear.js +0 -1
- package/icons/bootstrap/earbuds.js +0 -1
- package/icons/bootstrap/easel-fill.js +0 -1
- package/icons/bootstrap/easel.js +0 -1
- package/icons/bootstrap/easel2-fill.js +0 -1
- package/icons/bootstrap/easel2.js +0 -1
- package/icons/bootstrap/easel3-fill.js +0 -1
- package/icons/bootstrap/easel3.js +0 -1
- package/icons/bootstrap/egg-fill.js +0 -1
- package/icons/bootstrap/egg-fried.js +0 -1
- package/icons/bootstrap/egg.js +0 -1
- package/icons/bootstrap/eject-fill.js +0 -1
- package/icons/bootstrap/eject.js +0 -1
- package/icons/bootstrap/emoji-angry-fill.js +0 -1
- package/icons/bootstrap/emoji-angry.js +0 -1
- package/icons/bootstrap/emoji-astonished-fill.js +0 -1
- package/icons/bootstrap/emoji-astonished.js +0 -1
- package/icons/bootstrap/emoji-dizzy-fill.js +0 -1
- package/icons/bootstrap/emoji-dizzy.js +0 -1
- package/icons/bootstrap/emoji-expressionless-fill.js +0 -1
- package/icons/bootstrap/emoji-expressionless.js +0 -1
- package/icons/bootstrap/emoji-frown-fill.js +0 -1
- package/icons/bootstrap/emoji-frown.js +0 -1
- package/icons/bootstrap/emoji-grimace-fill.js +0 -1
- package/icons/bootstrap/emoji-grimace.js +0 -1
- package/icons/bootstrap/emoji-grin-fill.js +0 -1
- package/icons/bootstrap/emoji-grin.js +0 -1
- package/icons/bootstrap/emoji-heart-eyes-fill.js +0 -1
- package/icons/bootstrap/emoji-heart-eyes.js +0 -1
- package/icons/bootstrap/emoji-kiss-fill.js +0 -1
- package/icons/bootstrap/emoji-kiss.js +0 -1
- package/icons/bootstrap/emoji-laughing-fill.js +0 -1
- package/icons/bootstrap/emoji-laughing.js +0 -1
- package/icons/bootstrap/emoji-neutral-fill.js +0 -1
- package/icons/bootstrap/emoji-neutral.js +0 -1
- package/icons/bootstrap/emoji-smile-fill.js +0 -1
- package/icons/bootstrap/emoji-smile-upside-down-fill.js +0 -1
- package/icons/bootstrap/emoji-smile-upside-down.js +0 -1
- package/icons/bootstrap/emoji-smile.js +0 -1
- package/icons/bootstrap/emoji-sunglasses-fill.js +0 -1
- package/icons/bootstrap/emoji-sunglasses.js +0 -1
- package/icons/bootstrap/emoji-surprise-fill.js +0 -1
- package/icons/bootstrap/emoji-surprise.js +0 -1
- package/icons/bootstrap/emoji-tear-fill.js +0 -1
- package/icons/bootstrap/emoji-tear.js +0 -1
- package/icons/bootstrap/emoji-wink-fill.js +0 -1
- package/icons/bootstrap/emoji-wink.js +0 -1
- package/icons/bootstrap/envelope-arrow-down-fill.js +0 -1
- package/icons/bootstrap/envelope-arrow-down.js +0 -1
- package/icons/bootstrap/envelope-arrow-up-fill.js +0 -1
- package/icons/bootstrap/envelope-arrow-up.js +0 -1
- package/icons/bootstrap/envelope-at-fill.js +0 -1
- package/icons/bootstrap/envelope-at.js +0 -1
- package/icons/bootstrap/envelope-check-fill.js +0 -1
- package/icons/bootstrap/envelope-check.js +0 -1
- package/icons/bootstrap/envelope-dash-fill.js +0 -1
- package/icons/bootstrap/envelope-dash.js +0 -1
- package/icons/bootstrap/envelope-exclamation-fill.js +0 -1
- package/icons/bootstrap/envelope-exclamation.js +0 -1
- package/icons/bootstrap/envelope-fill.js +0 -1
- package/icons/bootstrap/envelope-heart-fill.js +0 -1
- package/icons/bootstrap/envelope-heart.js +0 -1
- package/icons/bootstrap/envelope-open-fill.js +0 -1
- package/icons/bootstrap/envelope-open-heart-fill.js +0 -1
- package/icons/bootstrap/envelope-open-heart.js +0 -1
- package/icons/bootstrap/envelope-open.js +0 -1
- package/icons/bootstrap/envelope-paper-fill.js +0 -1
- package/icons/bootstrap/envelope-paper-heart-fill.js +0 -1
- package/icons/bootstrap/envelope-paper-heart.js +0 -1
- package/icons/bootstrap/envelope-paper.js +0 -1
- package/icons/bootstrap/envelope-plus-fill.js +0 -1
- package/icons/bootstrap/envelope-plus.js +0 -1
- package/icons/bootstrap/envelope-slash-fill.js +0 -1
- package/icons/bootstrap/envelope-slash.js +0 -1
- package/icons/bootstrap/envelope-x-fill.js +0 -1
- package/icons/bootstrap/envelope-x.js +0 -1
- package/icons/bootstrap/envelope.js +0 -1
- package/icons/bootstrap/eraser-fill.js +0 -1
- package/icons/bootstrap/eraser.js +0 -1
- package/icons/bootstrap/escape.js +0 -1
- package/icons/bootstrap/ethernet.js +0 -1
- package/icons/bootstrap/ev-front-fill.js +0 -1
- package/icons/bootstrap/ev-front.js +0 -1
- package/icons/bootstrap/ev-station-fill.js +0 -1
- package/icons/bootstrap/ev-station.js +0 -1
- package/icons/bootstrap/exclamation-circle-fill.js +0 -1
- package/icons/bootstrap/exclamation-circle.js +0 -1
- package/icons/bootstrap/exclamation-diamond-fill.js +0 -1
- package/icons/bootstrap/exclamation-diamond.js +0 -1
- package/icons/bootstrap/exclamation-lg.js +0 -1
- package/icons/bootstrap/exclamation-octagon-fill.js +0 -1
- package/icons/bootstrap/exclamation-octagon.js +0 -1
- package/icons/bootstrap/exclamation-square-fill.js +0 -1
- package/icons/bootstrap/exclamation-square.js +0 -1
- package/icons/bootstrap/exclamation-triangle-fill.js +0 -1
- package/icons/bootstrap/exclamation-triangle.js +0 -1
- package/icons/bootstrap/exclamation.js +0 -1
- package/icons/bootstrap/exclude.js +0 -1
- package/icons/bootstrap/explicit-fill.js +0 -1
- package/icons/bootstrap/explicit.js +0 -1
- package/icons/bootstrap/exposure.js +0 -1
- package/icons/bootstrap/eye-fill.js +0 -1
- package/icons/bootstrap/eye-slash-fill.js +0 -1
- package/icons/bootstrap/eye-slash.js +0 -1
- package/icons/bootstrap/eye.js +0 -1
- package/icons/bootstrap/eyedropper.js +0 -1
- package/icons/bootstrap/eyeglasses.js +0 -1
- package/icons/bootstrap/facebook.js +0 -1
- package/icons/bootstrap/fan.js +0 -1
- package/icons/bootstrap/fast-forward-btn-fill.js +0 -1
- package/icons/bootstrap/fast-forward-btn.js +0 -1
- package/icons/bootstrap/fast-forward-circle-fill.js +0 -1
- package/icons/bootstrap/fast-forward-circle.js +0 -1
- package/icons/bootstrap/fast-forward-fill.js +0 -1
- package/icons/bootstrap/fast-forward.js +0 -1
- package/icons/bootstrap/feather.js +0 -1
- package/icons/bootstrap/feather2.js +0 -1
- package/icons/bootstrap/file-arrow-down-fill.js +0 -1
- package/icons/bootstrap/file-arrow-down.js +0 -1
- package/icons/bootstrap/file-arrow-up-fill.js +0 -1
- package/icons/bootstrap/file-arrow-up.js +0 -1
- package/icons/bootstrap/file-bar-graph-fill.js +0 -1
- package/icons/bootstrap/file-bar-graph.js +0 -1
- package/icons/bootstrap/file-binary-fill.js +0 -1
- package/icons/bootstrap/file-binary.js +0 -1
- package/icons/bootstrap/file-break-fill.js +0 -1
- package/icons/bootstrap/file-break.js +0 -1
- package/icons/bootstrap/file-check-fill.js +0 -1
- package/icons/bootstrap/file-check.js +0 -1
- package/icons/bootstrap/file-code-fill.js +0 -1
- package/icons/bootstrap/file-code.js +0 -1
- package/icons/bootstrap/file-diff-fill.js +0 -1
- package/icons/bootstrap/file-diff.js +0 -1
- package/icons/bootstrap/file-earmark-arrow-down-fill.js +0 -1
- package/icons/bootstrap/file-earmark-arrow-down.js +0 -1
- package/icons/bootstrap/file-earmark-arrow-up-fill.js +0 -1
- package/icons/bootstrap/file-earmark-arrow-up.js +0 -1
- package/icons/bootstrap/file-earmark-bar-graph-fill.js +0 -1
- package/icons/bootstrap/file-earmark-bar-graph.js +0 -1
- package/icons/bootstrap/file-earmark-binary-fill.js +0 -1
- package/icons/bootstrap/file-earmark-binary.js +0 -1
- package/icons/bootstrap/file-earmark-break-fill.js +0 -1
- package/icons/bootstrap/file-earmark-break.js +0 -1
- package/icons/bootstrap/file-earmark-check-fill.js +0 -1
- package/icons/bootstrap/file-earmark-check.js +0 -1
- package/icons/bootstrap/file-earmark-code-fill.js +0 -1
- package/icons/bootstrap/file-earmark-code.js +0 -1
- package/icons/bootstrap/file-earmark-diff-fill.js +0 -1
- package/icons/bootstrap/file-earmark-diff.js +0 -1
- package/icons/bootstrap/file-earmark-easel-fill.js +0 -1
- package/icons/bootstrap/file-earmark-easel.js +0 -1
- package/icons/bootstrap/file-earmark-excel-fill.js +0 -1
- package/icons/bootstrap/file-earmark-excel.js +0 -1
- package/icons/bootstrap/file-earmark-fill.js +0 -1
- package/icons/bootstrap/file-earmark-font-fill.js +0 -1
- package/icons/bootstrap/file-earmark-font.js +0 -1
- package/icons/bootstrap/file-earmark-image-fill.js +0 -1
- package/icons/bootstrap/file-earmark-image.js +0 -1
- package/icons/bootstrap/file-earmark-lock-fill.js +0 -1
- package/icons/bootstrap/file-earmark-lock.js +0 -1
- package/icons/bootstrap/file-earmark-lock2-fill.js +0 -1
- package/icons/bootstrap/file-earmark-lock2.js +0 -1
- package/icons/bootstrap/file-earmark-medical-fill.js +0 -1
- package/icons/bootstrap/file-earmark-medical.js +0 -1
- package/icons/bootstrap/file-earmark-minus-fill.js +0 -1
- package/icons/bootstrap/file-earmark-minus.js +0 -1
- package/icons/bootstrap/file-earmark-music-fill.js +0 -1
- package/icons/bootstrap/file-earmark-music.js +0 -1
- package/icons/bootstrap/file-earmark-pdf-fill.js +0 -1
- package/icons/bootstrap/file-earmark-pdf.js +0 -1
- package/icons/bootstrap/file-earmark-person-fill.js +0 -1
- package/icons/bootstrap/file-earmark-person.js +0 -1
- package/icons/bootstrap/file-earmark-play-fill.js +0 -1
- package/icons/bootstrap/file-earmark-play.js +0 -1
- package/icons/bootstrap/file-earmark-plus-fill.js +0 -1
- package/icons/bootstrap/file-earmark-plus.js +0 -1
- package/icons/bootstrap/file-earmark-post-fill.js +0 -1
- package/icons/bootstrap/file-earmark-post.js +0 -1
- package/icons/bootstrap/file-earmark-ppt-fill.js +0 -1
- package/icons/bootstrap/file-earmark-ppt.js +0 -1
- package/icons/bootstrap/file-earmark-richtext-fill.js +0 -1
- package/icons/bootstrap/file-earmark-richtext.js +0 -1
- package/icons/bootstrap/file-earmark-ruled-fill.js +0 -1
- package/icons/bootstrap/file-earmark-ruled.js +0 -1
- package/icons/bootstrap/file-earmark-slides-fill.js +0 -1
- package/icons/bootstrap/file-earmark-slides.js +0 -1
- package/icons/bootstrap/file-earmark-spreadsheet-fill.js +0 -1
- package/icons/bootstrap/file-earmark-spreadsheet.js +0 -1
- package/icons/bootstrap/file-earmark-text-fill.js +0 -1
- package/icons/bootstrap/file-earmark-text.js +0 -1
- package/icons/bootstrap/file-earmark-word-fill.js +0 -1
- package/icons/bootstrap/file-earmark-word.js +0 -1
- package/icons/bootstrap/file-earmark-x-fill.js +0 -1
- package/icons/bootstrap/file-earmark-x.js +0 -1
- package/icons/bootstrap/file-earmark-zip-fill.js +0 -1
- package/icons/bootstrap/file-earmark-zip.js +0 -1
- package/icons/bootstrap/file-earmark.js +0 -1
- package/icons/bootstrap/file-easel-fill.js +0 -1
- package/icons/bootstrap/file-easel.js +0 -1
- package/icons/bootstrap/file-excel-fill.js +0 -1
- package/icons/bootstrap/file-excel.js +0 -1
- package/icons/bootstrap/file-fill.js +0 -1
- package/icons/bootstrap/file-font-fill.js +0 -1
- package/icons/bootstrap/file-font.js +0 -1
- package/icons/bootstrap/file-image-fill.js +0 -1
- package/icons/bootstrap/file-image.js +0 -1
- package/icons/bootstrap/file-lock-fill.js +0 -1
- package/icons/bootstrap/file-lock.js +0 -1
- package/icons/bootstrap/file-lock2-fill.js +0 -1
- package/icons/bootstrap/file-lock2.js +0 -1
- package/icons/bootstrap/file-medical-fill.js +0 -1
- package/icons/bootstrap/file-medical.js +0 -1
- package/icons/bootstrap/file-minus-fill.js +0 -1
- package/icons/bootstrap/file-minus.js +0 -1
- package/icons/bootstrap/file-music-fill.js +0 -1
- package/icons/bootstrap/file-music.js +0 -1
- package/icons/bootstrap/file-pdf-fill.js +0 -1
- package/icons/bootstrap/file-pdf.js +0 -1
- package/icons/bootstrap/file-person-fill.js +0 -1
- package/icons/bootstrap/file-person.js +0 -1
- package/icons/bootstrap/file-play-fill.js +0 -1
- package/icons/bootstrap/file-play.js +0 -1
- package/icons/bootstrap/file-plus-fill.js +0 -1
- package/icons/bootstrap/file-plus.js +0 -1
- package/icons/bootstrap/file-post-fill.js +0 -1
- package/icons/bootstrap/file-post.js +0 -1
- package/icons/bootstrap/file-ppt-fill.js +0 -1
- package/icons/bootstrap/file-ppt.js +0 -1
- package/icons/bootstrap/file-richtext-fill.js +0 -1
- package/icons/bootstrap/file-richtext.js +0 -1
- package/icons/bootstrap/file-ruled-fill.js +0 -1
- package/icons/bootstrap/file-ruled.js +0 -1
- package/icons/bootstrap/file-slides-fill.js +0 -1
- package/icons/bootstrap/file-slides.js +0 -1
- package/icons/bootstrap/file-spreadsheet-fill.js +0 -1
- package/icons/bootstrap/file-spreadsheet.js +0 -1
- package/icons/bootstrap/file-text-fill.js +0 -1
- package/icons/bootstrap/file-text.js +0 -1
- package/icons/bootstrap/file-word-fill.js +0 -1
- package/icons/bootstrap/file-word.js +0 -1
- package/icons/bootstrap/file-x-fill.js +0 -1
- package/icons/bootstrap/file-x.js +0 -1
- package/icons/bootstrap/file-zip-fill.js +0 -1
- package/icons/bootstrap/file-zip.js +0 -1
- package/icons/bootstrap/file.js +0 -1
- package/icons/bootstrap/files-alt.js +0 -1
- package/icons/bootstrap/files.js +0 -1
- package/icons/bootstrap/filetype-aac.js +0 -1
- package/icons/bootstrap/filetype-ai.js +0 -1
- package/icons/bootstrap/filetype-bmp.js +0 -1
- package/icons/bootstrap/filetype-cs.js +0 -1
- package/icons/bootstrap/filetype-css.js +0 -1
- package/icons/bootstrap/filetype-csv.js +0 -1
- package/icons/bootstrap/filetype-doc.js +0 -1
- package/icons/bootstrap/filetype-docx.js +0 -1
- package/icons/bootstrap/filetype-exe.js +0 -1
- package/icons/bootstrap/filetype-gif.js +0 -1
- package/icons/bootstrap/filetype-heic.js +0 -1
- package/icons/bootstrap/filetype-html.js +0 -1
- package/icons/bootstrap/filetype-java.js +0 -1
- package/icons/bootstrap/filetype-jpg.js +0 -1
- package/icons/bootstrap/filetype-js.js +0 -1
- package/icons/bootstrap/filetype-json.js +0 -1
- package/icons/bootstrap/filetype-jsx.js +0 -1
- package/icons/bootstrap/filetype-key.js +0 -1
- package/icons/bootstrap/filetype-m4p.js +0 -1
- package/icons/bootstrap/filetype-md.js +0 -1
- package/icons/bootstrap/filetype-mdx.js +0 -1
- package/icons/bootstrap/filetype-mov.js +0 -1
- package/icons/bootstrap/filetype-mp3.js +0 -1
- package/icons/bootstrap/filetype-mp4.js +0 -1
- package/icons/bootstrap/filetype-otf.js +0 -1
- package/icons/bootstrap/filetype-pdf.js +0 -1
- package/icons/bootstrap/filetype-php.js +0 -1
- package/icons/bootstrap/filetype-png.js +0 -1
- package/icons/bootstrap/filetype-ppt.js +0 -1
- package/icons/bootstrap/filetype-pptx.js +0 -1
- package/icons/bootstrap/filetype-psd.js +0 -1
- package/icons/bootstrap/filetype-py.js +0 -1
- package/icons/bootstrap/filetype-raw.js +0 -1
- package/icons/bootstrap/filetype-rb.js +0 -1
- package/icons/bootstrap/filetype-sass.js +0 -1
- package/icons/bootstrap/filetype-scss.js +0 -1
- package/icons/bootstrap/filetype-sh.js +0 -1
- package/icons/bootstrap/filetype-sql.js +0 -1
- package/icons/bootstrap/filetype-svg.js +0 -1
- package/icons/bootstrap/filetype-tiff.js +0 -1
- package/icons/bootstrap/filetype-tsx.js +0 -1
- package/icons/bootstrap/filetype-ttf.js +0 -1
- package/icons/bootstrap/filetype-txt.js +0 -1
- package/icons/bootstrap/filetype-wav.js +0 -1
- package/icons/bootstrap/filetype-woff.js +0 -1
- package/icons/bootstrap/filetype-xls.js +0 -1
- package/icons/bootstrap/filetype-xlsx.js +0 -1
- package/icons/bootstrap/filetype-xml.js +0 -1
- package/icons/bootstrap/filetype-yml.js +0 -1
- package/icons/bootstrap/film.js +0 -1
- package/icons/bootstrap/filter-circle-fill.js +0 -1
- package/icons/bootstrap/filter-circle.js +0 -1
- package/icons/bootstrap/filter-left.js +0 -1
- package/icons/bootstrap/filter-right.js +0 -1
- package/icons/bootstrap/filter-square-fill.js +0 -1
- package/icons/bootstrap/filter-square.js +0 -1
- package/icons/bootstrap/filter.js +0 -1
- package/icons/bootstrap/fingerprint.js +0 -1
- package/icons/bootstrap/fire.js +0 -1
- package/icons/bootstrap/flag-fill.js +0 -1
- package/icons/bootstrap/flag.js +0 -1
- package/icons/bootstrap/floppy-fill.js +0 -1
- package/icons/bootstrap/floppy.js +0 -1
- package/icons/bootstrap/floppy2-fill.js +0 -1
- package/icons/bootstrap/floppy2.js +0 -1
- package/icons/bootstrap/flower1.js +0 -1
- package/icons/bootstrap/flower2.js +0 -1
- package/icons/bootstrap/flower3.js +0 -1
- package/icons/bootstrap/folder-check.js +0 -1
- package/icons/bootstrap/folder-fill.js +0 -1
- package/icons/bootstrap/folder-minus.js +0 -1
- package/icons/bootstrap/folder-plus.js +0 -1
- package/icons/bootstrap/folder-symlink-fill.js +0 -1
- package/icons/bootstrap/folder-symlink.js +0 -1
- package/icons/bootstrap/folder-x.js +0 -1
- package/icons/bootstrap/folder.js +0 -1
- package/icons/bootstrap/folder2-open.js +0 -1
- package/icons/bootstrap/folder2.js +0 -1
- package/icons/bootstrap/fonts.js +0 -1
- package/icons/bootstrap/forward-fill.js +0 -1
- package/icons/bootstrap/forward.js +0 -1
- package/icons/bootstrap/front.js +0 -1
- package/icons/bootstrap/fuel-pump-diesel-fill.js +0 -1
- package/icons/bootstrap/fuel-pump-diesel.js +0 -1
- package/icons/bootstrap/fuel-pump-fill.js +0 -1
- package/icons/bootstrap/fuel-pump.js +0 -1
- package/icons/bootstrap/fullscreen-exit.js +0 -1
- package/icons/bootstrap/fullscreen.js +0 -1
- package/icons/bootstrap/funnel-fill.js +0 -1
- package/icons/bootstrap/funnel.js +0 -1
- package/icons/bootstrap/gear-fill.js +0 -1
- package/icons/bootstrap/gear-wide-connected.js +0 -1
- package/icons/bootstrap/gear-wide.js +0 -1
- package/icons/bootstrap/gear.js +0 -1
- package/icons/bootstrap/gem.js +0 -1
- package/icons/bootstrap/gender-ambiguous.js +0 -1
- package/icons/bootstrap/gender-female.js +0 -1
- package/icons/bootstrap/gender-male.js +0 -1
- package/icons/bootstrap/gender-neuter.js +0 -1
- package/icons/bootstrap/gender-trans.js +0 -1
- package/icons/bootstrap/geo-alt-fill.js +0 -1
- package/icons/bootstrap/geo-alt.js +0 -1
- package/icons/bootstrap/geo-fill.js +0 -1
- package/icons/bootstrap/geo.js +0 -1
- package/icons/bootstrap/gift-fill.js +0 -1
- package/icons/bootstrap/gift.js +0 -1
- package/icons/bootstrap/git.js +0 -1
- package/icons/bootstrap/github.js +0 -1
- package/icons/bootstrap/gitlab.js +0 -1
- package/icons/bootstrap/globe-americas.js +0 -1
- package/icons/bootstrap/globe-asia-australia.js +0 -1
- package/icons/bootstrap/globe-central-south-asia.js +0 -1
- package/icons/bootstrap/globe-europe-africa.js +0 -1
- package/icons/bootstrap/globe.js +0 -1
- package/icons/bootstrap/globe2.js +0 -1
- package/icons/bootstrap/google-play.js +0 -1
- package/icons/bootstrap/google.js +0 -1
- package/icons/bootstrap/gpu-card.js +0 -1
- package/icons/bootstrap/graph-down-arrow.js +0 -1
- package/icons/bootstrap/graph-down.js +0 -1
- package/icons/bootstrap/graph-up-arrow.js +0 -1
- package/icons/bootstrap/graph-up.js +0 -1
- package/icons/bootstrap/grid-1x2-fill.js +0 -1
- package/icons/bootstrap/grid-1x2.js +0 -1
- package/icons/bootstrap/grid-3x2-gap-fill.js +0 -1
- package/icons/bootstrap/grid-3x2-gap.js +0 -1
- package/icons/bootstrap/grid-3x2.js +0 -1
- package/icons/bootstrap/grid-3x3-gap-fill.js +0 -1
- package/icons/bootstrap/grid-3x3-gap.js +0 -1
- package/icons/bootstrap/grid-3x3.js +0 -1
- package/icons/bootstrap/grid-fill.js +0 -1
- package/icons/bootstrap/grid.js +0 -1
- package/icons/bootstrap/grip-horizontal.js +0 -1
- package/icons/bootstrap/grip-vertical.js +0 -1
- package/icons/bootstrap/h-circle-fill.js +0 -1
- package/icons/bootstrap/h-circle.js +0 -1
- package/icons/bootstrap/h-square-fill.js +0 -1
- package/icons/bootstrap/h-square.js +0 -1
- package/icons/bootstrap/hammer.js +0 -1
- package/icons/bootstrap/hand-index-fill.js +0 -1
- package/icons/bootstrap/hand-index-thumb-fill.js +0 -1
- package/icons/bootstrap/hand-index-thumb.js +0 -1
- package/icons/bootstrap/hand-index.js +0 -1
- package/icons/bootstrap/hand-thumbs-down-fill.js +0 -1
- package/icons/bootstrap/hand-thumbs-down.js +0 -1
- package/icons/bootstrap/hand-thumbs-up-fill.js +0 -1
- package/icons/bootstrap/hand-thumbs-up.js +0 -1
- package/icons/bootstrap/handbag-fill.js +0 -1
- package/icons/bootstrap/handbag.js +0 -1
- package/icons/bootstrap/hash.js +0 -1
- package/icons/bootstrap/hdd-fill.js +0 -1
- package/icons/bootstrap/hdd-network-fill.js +0 -1
- package/icons/bootstrap/hdd-network.js +0 -1
- package/icons/bootstrap/hdd-rack-fill.js +0 -1
- package/icons/bootstrap/hdd-rack.js +0 -1
- package/icons/bootstrap/hdd-stack-fill.js +0 -1
- package/icons/bootstrap/hdd-stack.js +0 -1
- package/icons/bootstrap/hdd.js +0 -1
- package/icons/bootstrap/hdmi-fill.js +0 -1
- package/icons/bootstrap/hdmi.js +0 -1
- package/icons/bootstrap/headphones.js +0 -1
- package/icons/bootstrap/headset-vr.js +0 -1
- package/icons/bootstrap/headset.js +0 -1
- package/icons/bootstrap/heart-arrow.js +0 -1
- package/icons/bootstrap/heart-fill.js +0 -1
- package/icons/bootstrap/heart-half.js +0 -1
- package/icons/bootstrap/heart-pulse-fill.js +0 -1
- package/icons/bootstrap/heart-pulse.js +0 -1
- package/icons/bootstrap/heart.js +0 -1
- package/icons/bootstrap/heartbreak-fill.js +0 -1
- package/icons/bootstrap/heartbreak.js +0 -1
- package/icons/bootstrap/hearts.js +0 -1
- package/icons/bootstrap/heptagon-fill.js +0 -1
- package/icons/bootstrap/heptagon-half.js +0 -1
- package/icons/bootstrap/heptagon.js +0 -1
- package/icons/bootstrap/hexagon-fill.js +0 -1
- package/icons/bootstrap/hexagon-half.js +0 -1
- package/icons/bootstrap/hexagon.js +0 -1
- package/icons/bootstrap/highlighter.js +0 -1
- package/icons/bootstrap/highlights.js +0 -1
- package/icons/bootstrap/hospital-fill.js +0 -1
- package/icons/bootstrap/hospital.js +0 -1
- package/icons/bootstrap/hourglass-bottom.js +0 -1
- package/icons/bootstrap/hourglass-split.js +0 -1
- package/icons/bootstrap/hourglass-top.js +0 -1
- package/icons/bootstrap/hourglass.js +0 -1
- package/icons/bootstrap/house-add-fill.js +0 -1
- package/icons/bootstrap/house-add.js +0 -1
- package/icons/bootstrap/house-check-fill.js +0 -1
- package/icons/bootstrap/house-check.js +0 -1
- package/icons/bootstrap/house-dash-fill.js +0 -1
- package/icons/bootstrap/house-dash.js +0 -1
- package/icons/bootstrap/house-door-fill.js +0 -1
- package/icons/bootstrap/house-door.js +0 -1
- package/icons/bootstrap/house-down-fill.js +0 -1
- package/icons/bootstrap/house-down.js +0 -1
- package/icons/bootstrap/house-exclamation-fill.js +0 -1
- package/icons/bootstrap/house-exclamation.js +0 -1
- package/icons/bootstrap/house-fill.js +0 -1
- package/icons/bootstrap/house-gear-fill.js +0 -1
- package/icons/bootstrap/house-gear.js +0 -1
- package/icons/bootstrap/house-heart-fill.js +0 -1
- package/icons/bootstrap/house-heart.js +0 -1
- package/icons/bootstrap/house-lock-fill.js +0 -1
- package/icons/bootstrap/house-lock.js +0 -1
- package/icons/bootstrap/house-slash-fill.js +0 -1
- package/icons/bootstrap/house-slash.js +0 -1
- package/icons/bootstrap/house-up-fill.js +0 -1
- package/icons/bootstrap/house-up.js +0 -1
- package/icons/bootstrap/house-x-fill.js +0 -1
- package/icons/bootstrap/house-x.js +0 -1
- package/icons/bootstrap/house.js +0 -1
- package/icons/bootstrap/houses-fill.js +0 -1
- package/icons/bootstrap/houses.js +0 -1
- package/icons/bootstrap/hr.js +0 -1
- package/icons/bootstrap/hurricane.js +0 -1
- package/icons/bootstrap/hypnotize.js +0 -1
- package/icons/bootstrap/image-alt.js +0 -1
- package/icons/bootstrap/image-fill.js +0 -1
- package/icons/bootstrap/image.js +0 -1
- package/icons/bootstrap/images.js +0 -1
- package/icons/bootstrap/inbox-fill.js +0 -1
- package/icons/bootstrap/inbox.js +0 -1
- package/icons/bootstrap/inboxes-fill.js +0 -1
- package/icons/bootstrap/inboxes.js +0 -1
- package/icons/bootstrap/incognito.js +0 -1
- package/icons/bootstrap/indent.js +0 -1
- package/icons/bootstrap/infinity.js +0 -1
- package/icons/bootstrap/info-circle-fill.js +0 -1
- package/icons/bootstrap/info-circle.js +0 -1
- package/icons/bootstrap/info-lg.js +0 -1
- package/icons/bootstrap/info-square-fill.js +0 -1
- package/icons/bootstrap/info-square.js +0 -1
- package/icons/bootstrap/info.js +0 -1
- package/icons/bootstrap/input-cursor-text.js +0 -1
- package/icons/bootstrap/input-cursor.js +0 -1
- package/icons/bootstrap/instagram.js +0 -1
- package/icons/bootstrap/intersect.js +0 -1
- package/icons/bootstrap/journal-album.js +0 -1
- package/icons/bootstrap/journal-arrow-down.js +0 -1
- package/icons/bootstrap/journal-arrow-up.js +0 -1
- package/icons/bootstrap/journal-bookmark-fill.js +0 -1
- package/icons/bootstrap/journal-bookmark.js +0 -1
- package/icons/bootstrap/journal-check.js +0 -1
- package/icons/bootstrap/journal-code.js +0 -1
- package/icons/bootstrap/journal-medical.js +0 -1
- package/icons/bootstrap/journal-minus.js +0 -1
- package/icons/bootstrap/journal-plus.js +0 -1
- package/icons/bootstrap/journal-richtext.js +0 -1
- package/icons/bootstrap/journal-text.js +0 -1
- package/icons/bootstrap/journal-x.js +0 -1
- package/icons/bootstrap/journal.js +0 -1
- package/icons/bootstrap/journals.js +0 -1
- package/icons/bootstrap/joystick.js +0 -1
- package/icons/bootstrap/justify-left.js +0 -1
- package/icons/bootstrap/justify-right.js +0 -1
- package/icons/bootstrap/justify.js +0 -1
- package/icons/bootstrap/kanban-fill.js +0 -1
- package/icons/bootstrap/kanban.js +0 -1
- package/icons/bootstrap/key-fill.js +0 -1
- package/icons/bootstrap/key.js +0 -1
- package/icons/bootstrap/keyboard-fill.js +0 -1
- package/icons/bootstrap/keyboard.js +0 -1
- package/icons/bootstrap/ladder.js +0 -1
- package/icons/bootstrap/lamp-fill.js +0 -1
- package/icons/bootstrap/lamp.js +0 -1
- package/icons/bootstrap/laptop-fill.js +0 -1
- package/icons/bootstrap/laptop.js +0 -1
- package/icons/bootstrap/layer-backward.js +0 -1
- package/icons/bootstrap/layer-forward.js +0 -1
- package/icons/bootstrap/layers-fill.js +0 -1
- package/icons/bootstrap/layers-half.js +0 -1
- package/icons/bootstrap/layers.js +0 -1
- package/icons/bootstrap/layout-sidebar-inset-reverse.js +0 -1
- package/icons/bootstrap/layout-sidebar-inset.js +0 -1
- package/icons/bootstrap/layout-sidebar-reverse.js +0 -1
- package/icons/bootstrap/layout-sidebar.js +0 -1
- package/icons/bootstrap/layout-split.js +0 -1
- package/icons/bootstrap/layout-text-sidebar-reverse.js +0 -1
- package/icons/bootstrap/layout-text-sidebar.js +0 -1
- package/icons/bootstrap/layout-text-window-reverse.js +0 -1
- package/icons/bootstrap/layout-text-window.js +0 -1
- package/icons/bootstrap/layout-three-columns.js +0 -1
- package/icons/bootstrap/layout-wtf.js +0 -1
- package/icons/bootstrap/life-preserver.js +0 -1
- package/icons/bootstrap/lightbulb-fill.js +0 -1
- package/icons/bootstrap/lightbulb-off-fill.js +0 -1
- package/icons/bootstrap/lightbulb-off.js +0 -1
- package/icons/bootstrap/lightbulb.js +0 -1
- package/icons/bootstrap/lightning-charge-fill.js +0 -1
- package/icons/bootstrap/lightning-charge.js +0 -1
- package/icons/bootstrap/lightning-fill.js +0 -1
- package/icons/bootstrap/lightning.js +0 -1
- package/icons/bootstrap/line.js +0 -1
- package/icons/bootstrap/link-45deg.js +0 -1
- package/icons/bootstrap/link.js +0 -1
- package/icons/bootstrap/linkedin.js +0 -1
- package/icons/bootstrap/list-check.js +0 -1
- package/icons/bootstrap/list-columns-reverse.js +0 -1
- package/icons/bootstrap/list-columns.js +0 -1
- package/icons/bootstrap/list-nested.js +0 -1
- package/icons/bootstrap/list-ol.js +0 -1
- package/icons/bootstrap/list-stars.js +0 -1
- package/icons/bootstrap/list-task.js +0 -1
- package/icons/bootstrap/list-ul.js +0 -1
- package/icons/bootstrap/list.js +0 -1
- package/icons/bootstrap/lock-fill.js +0 -1
- package/icons/bootstrap/lock.js +0 -1
- package/icons/bootstrap/luggage-fill.js +0 -1
- package/icons/bootstrap/luggage.js +0 -1
- package/icons/bootstrap/lungs-fill.js +0 -1
- package/icons/bootstrap/lungs.js +0 -1
- package/icons/bootstrap/magic.js +0 -1
- package/icons/bootstrap/magnet-fill.js +0 -1
- package/icons/bootstrap/magnet.js +0 -1
- package/icons/bootstrap/mailbox-flag.js +0 -1
- package/icons/bootstrap/mailbox.js +0 -1
- package/icons/bootstrap/mailbox2-flag.js +0 -1
- package/icons/bootstrap/mailbox2.js +0 -1
- package/icons/bootstrap/map-fill.js +0 -1
- package/icons/bootstrap/map.js +0 -1
- package/icons/bootstrap/markdown-fill.js +0 -1
- package/icons/bootstrap/markdown.js +0 -1
- package/icons/bootstrap/marker-tip.js +0 -1
- package/icons/bootstrap/mask.js +0 -1
- package/icons/bootstrap/mastodon.js +0 -1
- package/icons/bootstrap/medium.js +0 -1
- package/icons/bootstrap/megaphone-fill.js +0 -1
- package/icons/bootstrap/megaphone.js +0 -1
- package/icons/bootstrap/memory.js +0 -1
- package/icons/bootstrap/menu-app-fill.js +0 -1
- package/icons/bootstrap/menu-app.js +0 -1
- package/icons/bootstrap/menu-button-fill.js +0 -1
- package/icons/bootstrap/menu-button-wide-fill.js +0 -1
- package/icons/bootstrap/menu-button-wide.js +0 -1
- package/icons/bootstrap/menu-button.js +0 -1
- package/icons/bootstrap/menu-down.js +0 -1
- package/icons/bootstrap/menu-up.js +0 -1
- package/icons/bootstrap/messenger.js +0 -1
- package/icons/bootstrap/meta.js +0 -1
- package/icons/bootstrap/mic-fill.js +0 -1
- package/icons/bootstrap/mic-mute-fill.js +0 -1
- package/icons/bootstrap/mic-mute.js +0 -1
- package/icons/bootstrap/mic.js +0 -1
- package/icons/bootstrap/microsoft-teams.js +0 -1
- package/icons/bootstrap/microsoft.js +0 -1
- package/icons/bootstrap/minecart-loaded.js +0 -1
- package/icons/bootstrap/minecart.js +0 -1
- package/icons/bootstrap/modem-fill.js +0 -1
- package/icons/bootstrap/modem.js +0 -1
- package/icons/bootstrap/moisture.js +0 -1
- package/icons/bootstrap/moon-fill.js +0 -1
- package/icons/bootstrap/moon-stars-fill.js +0 -1
- package/icons/bootstrap/moon-stars.js +0 -1
- package/icons/bootstrap/moon.js +0 -1
- package/icons/bootstrap/mortarboard-fill.js +0 -1
- package/icons/bootstrap/mortarboard.js +0 -1
- package/icons/bootstrap/motherboard-fill.js +0 -1
- package/icons/bootstrap/motherboard.js +0 -1
- package/icons/bootstrap/mouse-fill.js +0 -1
- package/icons/bootstrap/mouse.js +0 -1
- package/icons/bootstrap/mouse2-fill.js +0 -1
- package/icons/bootstrap/mouse2.js +0 -1
- package/icons/bootstrap/mouse3-fill.js +0 -1
- package/icons/bootstrap/mouse3.js +0 -1
- package/icons/bootstrap/music-note-beamed.js +0 -1
- package/icons/bootstrap/music-note-list.js +0 -1
- package/icons/bootstrap/music-note.js +0 -1
- package/icons/bootstrap/music-player-fill.js +0 -1
- package/icons/bootstrap/music-player.js +0 -1
- package/icons/bootstrap/newspaper.js +0 -1
- package/icons/bootstrap/nintendo-switch.js +0 -1
- package/icons/bootstrap/node-minus-fill.js +0 -1
- package/icons/bootstrap/node-minus.js +0 -1
- package/icons/bootstrap/node-plus-fill.js +0 -1
- package/icons/bootstrap/node-plus.js +0 -1
- package/icons/bootstrap/noise-reduction.js +0 -1
- package/icons/bootstrap/nut-fill.js +0 -1
- package/icons/bootstrap/nut.js +0 -1
- package/icons/bootstrap/nvidia.js +0 -1
- package/icons/bootstrap/nvme-fill.js +0 -1
- package/icons/bootstrap/nvme.js +0 -1
- package/icons/bootstrap/octagon-fill.js +0 -1
- package/icons/bootstrap/octagon-half.js +0 -1
- package/icons/bootstrap/octagon.js +0 -1
- package/icons/bootstrap/opencollective.js +0 -1
- package/icons/bootstrap/optical-audio-fill.js +0 -1
- package/icons/bootstrap/optical-audio.js +0 -1
- package/icons/bootstrap/option.js +0 -1
- package/icons/bootstrap/outlet.js +0 -1
- package/icons/bootstrap/p-circle-fill.js +0 -1
- package/icons/bootstrap/p-circle.js +0 -1
- package/icons/bootstrap/p-square-fill.js +0 -1
- package/icons/bootstrap/p-square.js +0 -1
- package/icons/bootstrap/paint-bucket.js +0 -1
- package/icons/bootstrap/palette-fill.js +0 -1
- package/icons/bootstrap/palette.js +0 -1
- package/icons/bootstrap/palette2.js +0 -1
- package/icons/bootstrap/paperclip.js +0 -1
- package/icons/bootstrap/paragraph.js +0 -1
- package/icons/bootstrap/pass-fill.js +0 -1
- package/icons/bootstrap/pass.js +0 -1
- package/icons/bootstrap/passport-fill.js +0 -1
- package/icons/bootstrap/passport.js +0 -1
- package/icons/bootstrap/patch-check-fill.js +0 -1
- package/icons/bootstrap/patch-check.js +0 -1
- package/icons/bootstrap/patch-exclamation-fill.js +0 -1
- package/icons/bootstrap/patch-exclamation.js +0 -1
- package/icons/bootstrap/patch-minus-fill.js +0 -1
- package/icons/bootstrap/patch-minus.js +0 -1
- package/icons/bootstrap/patch-plus-fill.js +0 -1
- package/icons/bootstrap/patch-plus.js +0 -1
- package/icons/bootstrap/patch-question-fill.js +0 -1
- package/icons/bootstrap/patch-question.js +0 -1
- package/icons/bootstrap/pause-btn-fill.js +0 -1
- package/icons/bootstrap/pause-btn.js +0 -1
- package/icons/bootstrap/pause-circle-fill.js +0 -1
- package/icons/bootstrap/pause-circle.js +0 -1
- package/icons/bootstrap/pause-fill.js +0 -1
- package/icons/bootstrap/pause.js +0 -1
- package/icons/bootstrap/paypal.js +0 -1
- package/icons/bootstrap/pc-display-horizontal.js +0 -1
- package/icons/bootstrap/pc-display.js +0 -1
- package/icons/bootstrap/pc-horizontal.js +0 -1
- package/icons/bootstrap/pc.js +0 -1
- package/icons/bootstrap/pci-card-network.js +0 -1
- package/icons/bootstrap/pci-card-sound.js +0 -1
- package/icons/bootstrap/pci-card.js +0 -1
- package/icons/bootstrap/peace-fill.js +0 -1
- package/icons/bootstrap/peace.js +0 -1
- package/icons/bootstrap/pen-fill.js +0 -1
- package/icons/bootstrap/pen.js +0 -1
- package/icons/bootstrap/pencil-fill.js +0 -1
- package/icons/bootstrap/pencil-square.js +0 -1
- package/icons/bootstrap/pencil.js +0 -1
- package/icons/bootstrap/pentagon-fill.js +0 -1
- package/icons/bootstrap/pentagon-half.js +0 -1
- package/icons/bootstrap/pentagon.js +0 -1
- package/icons/bootstrap/people-fill.js +0 -1
- package/icons/bootstrap/people.js +0 -1
- package/icons/bootstrap/percent.js +0 -1
- package/icons/bootstrap/person-add.js +0 -1
- package/icons/bootstrap/person-arms-up.js +0 -1
- package/icons/bootstrap/person-badge-fill.js +0 -1
- package/icons/bootstrap/person-badge.js +0 -1
- package/icons/bootstrap/person-bounding-box.js +0 -1
- package/icons/bootstrap/person-check-fill.js +0 -1
- package/icons/bootstrap/person-check.js +0 -1
- package/icons/bootstrap/person-circle.js +0 -1
- package/icons/bootstrap/person-dash-fill.js +0 -1
- package/icons/bootstrap/person-dash.js +0 -1
- package/icons/bootstrap/person-down.js +0 -1
- package/icons/bootstrap/person-exclamation.js +0 -1
- package/icons/bootstrap/person-fill-add.js +0 -1
- package/icons/bootstrap/person-fill-check.js +0 -1
- package/icons/bootstrap/person-fill-dash.js +0 -1
- package/icons/bootstrap/person-fill-down.js +0 -1
- package/icons/bootstrap/person-fill-exclamation.js +0 -1
- package/icons/bootstrap/person-fill-gear.js +0 -1
- package/icons/bootstrap/person-fill-lock.js +0 -1
- package/icons/bootstrap/person-fill-slash.js +0 -1
- package/icons/bootstrap/person-fill-up.js +0 -1
- package/icons/bootstrap/person-fill-x.js +0 -1
- package/icons/bootstrap/person-fill.js +0 -1
- package/icons/bootstrap/person-gear.js +0 -1
- package/icons/bootstrap/person-heart.js +0 -1
- package/icons/bootstrap/person-hearts.js +0 -1
- package/icons/bootstrap/person-lines-fill.js +0 -1
- package/icons/bootstrap/person-lock.js +0 -1
- package/icons/bootstrap/person-plus-fill.js +0 -1
- package/icons/bootstrap/person-plus.js +0 -1
- package/icons/bootstrap/person-raised-hand.js +0 -1
- package/icons/bootstrap/person-rolodex.js +0 -1
- package/icons/bootstrap/person-slash.js +0 -1
- package/icons/bootstrap/person-square.js +0 -1
- package/icons/bootstrap/person-standing-dress.js +0 -1
- package/icons/bootstrap/person-standing.js +0 -1
- package/icons/bootstrap/person-up.js +0 -1
- package/icons/bootstrap/person-vcard-fill.js +0 -1
- package/icons/bootstrap/person-vcard.js +0 -1
- package/icons/bootstrap/person-video.js +0 -1
- package/icons/bootstrap/person-video2.js +0 -1
- package/icons/bootstrap/person-video3.js +0 -1
- package/icons/bootstrap/person-walking.js +0 -1
- package/icons/bootstrap/person-wheelchair.js +0 -1
- package/icons/bootstrap/person-workspace.js +0 -1
- package/icons/bootstrap/person-x-fill.js +0 -1
- package/icons/bootstrap/person-x.js +0 -1
- package/icons/bootstrap/person.js +0 -1
- package/icons/bootstrap/phone-fill.js +0 -1
- package/icons/bootstrap/phone-flip.js +0 -1
- package/icons/bootstrap/phone-landscape-fill.js +0 -1
- package/icons/bootstrap/phone-landscape.js +0 -1
- package/icons/bootstrap/phone-vibrate-fill.js +0 -1
- package/icons/bootstrap/phone-vibrate.js +0 -1
- package/icons/bootstrap/phone.js +0 -1
- package/icons/bootstrap/pie-chart-fill.js +0 -1
- package/icons/bootstrap/pie-chart.js +0 -1
- package/icons/bootstrap/piggy-bank-fill.js +0 -1
- package/icons/bootstrap/piggy-bank.js +0 -1
- package/icons/bootstrap/pin-angle-fill.js +0 -1
- package/icons/bootstrap/pin-angle.js +0 -1
- package/icons/bootstrap/pin-fill.js +0 -1
- package/icons/bootstrap/pin-map-fill.js +0 -1
- package/icons/bootstrap/pin-map.js +0 -1
- package/icons/bootstrap/pin.js +0 -1
- package/icons/bootstrap/pinterest.js +0 -1
- package/icons/bootstrap/pip-fill.js +0 -1
- package/icons/bootstrap/pip.js +0 -1
- package/icons/bootstrap/play-btn-fill.js +0 -1
- package/icons/bootstrap/play-btn.js +0 -1
- package/icons/bootstrap/play-circle-fill.js +0 -1
- package/icons/bootstrap/play-circle.js +0 -1
- package/icons/bootstrap/play-fill.js +0 -1
- package/icons/bootstrap/play.js +0 -1
- package/icons/bootstrap/playstation.js +0 -1
- package/icons/bootstrap/plug-fill.js +0 -1
- package/icons/bootstrap/plug.js +0 -1
- package/icons/bootstrap/plugin.js +0 -1
- package/icons/bootstrap/plus-circle-dotted.js +0 -1
- package/icons/bootstrap/plus-circle-fill.js +0 -1
- package/icons/bootstrap/plus-circle.js +0 -1
- package/icons/bootstrap/plus-lg.js +0 -1
- package/icons/bootstrap/plus-slash-minus.js +0 -1
- package/icons/bootstrap/plus-square-dotted.js +0 -1
- package/icons/bootstrap/plus-square-fill.js +0 -1
- package/icons/bootstrap/plus-square.js +0 -1
- package/icons/bootstrap/plus.js +0 -1
- package/icons/bootstrap/postage-fill.js +0 -1
- package/icons/bootstrap/postage-heart-fill.js +0 -1
- package/icons/bootstrap/postage-heart.js +0 -1
- package/icons/bootstrap/postage.js +0 -1
- package/icons/bootstrap/postcard-fill.js +0 -1
- package/icons/bootstrap/postcard-heart-fill.js +0 -1
- package/icons/bootstrap/postcard-heart.js +0 -1
- package/icons/bootstrap/postcard.js +0 -1
- package/icons/bootstrap/power.js +0 -1
- package/icons/bootstrap/prescription.js +0 -1
- package/icons/bootstrap/prescription2.js +0 -1
- package/icons/bootstrap/printer-fill.js +0 -1
- package/icons/bootstrap/printer.js +0 -1
- package/icons/bootstrap/projector-fill.js +0 -1
- package/icons/bootstrap/projector.js +0 -1
- package/icons/bootstrap/puzzle-fill.js +0 -1
- package/icons/bootstrap/puzzle.js +0 -1
- package/icons/bootstrap/qr-code-scan.js +0 -1
- package/icons/bootstrap/qr-code.js +0 -1
- package/icons/bootstrap/question-circle-fill.js +0 -1
- package/icons/bootstrap/question-circle.js +0 -1
- package/icons/bootstrap/question-diamond-fill.js +0 -1
- package/icons/bootstrap/question-diamond.js +0 -1
- package/icons/bootstrap/question-lg.js +0 -1
- package/icons/bootstrap/question-octagon-fill.js +0 -1
- package/icons/bootstrap/question-octagon.js +0 -1
- package/icons/bootstrap/question-square-fill.js +0 -1
- package/icons/bootstrap/question-square.js +0 -1
- package/icons/bootstrap/question.js +0 -1
- package/icons/bootstrap/quora.js +0 -1
- package/icons/bootstrap/quote.js +0 -1
- package/icons/bootstrap/r-circle-fill.js +0 -1
- package/icons/bootstrap/r-circle.js +0 -1
- package/icons/bootstrap/r-square-fill.js +0 -1
- package/icons/bootstrap/r-square.js +0 -1
- package/icons/bootstrap/radar.js +0 -1
- package/icons/bootstrap/radioactive.js +0 -1
- package/icons/bootstrap/rainbow.js +0 -1
- package/icons/bootstrap/receipt-cutoff.js +0 -1
- package/icons/bootstrap/receipt.js +0 -1
- package/icons/bootstrap/reception-0.js +0 -1
- package/icons/bootstrap/reception-1.js +0 -1
- package/icons/bootstrap/reception-2.js +0 -1
- package/icons/bootstrap/reception-3.js +0 -1
- package/icons/bootstrap/reception-4.js +0 -1
- package/icons/bootstrap/record-btn-fill.js +0 -1
- package/icons/bootstrap/record-btn.js +0 -1
- package/icons/bootstrap/record-circle-fill.js +0 -1
- package/icons/bootstrap/record-circle.js +0 -1
- package/icons/bootstrap/record-fill.js +0 -1
- package/icons/bootstrap/record.js +0 -1
- package/icons/bootstrap/record2-fill.js +0 -1
- package/icons/bootstrap/record2.js +0 -1
- package/icons/bootstrap/recycle.js +0 -1
- package/icons/bootstrap/reddit.js +0 -1
- package/icons/bootstrap/regex.js +0 -1
- package/icons/bootstrap/repeat-1.js +0 -1
- package/icons/bootstrap/repeat.js +0 -1
- package/icons/bootstrap/reply-all-fill.js +0 -1
- package/icons/bootstrap/reply-all.js +0 -1
- package/icons/bootstrap/reply-fill.js +0 -1
- package/icons/bootstrap/reply.js +0 -1
- package/icons/bootstrap/rewind-btn-fill.js +0 -1
- package/icons/bootstrap/rewind-btn.js +0 -1
- package/icons/bootstrap/rewind-circle-fill.js +0 -1
- package/icons/bootstrap/rewind-circle.js +0 -1
- package/icons/bootstrap/rewind-fill.js +0 -1
- package/icons/bootstrap/rewind.js +0 -1
- package/icons/bootstrap/robot.js +0 -1
- package/icons/bootstrap/rocket-fill.js +0 -1
- package/icons/bootstrap/rocket-takeoff-fill.js +0 -1
- package/icons/bootstrap/rocket-takeoff.js +0 -1
- package/icons/bootstrap/rocket.js +0 -1
- package/icons/bootstrap/router-fill.js +0 -1
- package/icons/bootstrap/router.js +0 -1
- package/icons/bootstrap/rss-fill.js +0 -1
- package/icons/bootstrap/rss.js +0 -1
- package/icons/bootstrap/rulers.js +0 -1
- package/icons/bootstrap/safe-fill.js +0 -1
- package/icons/bootstrap/safe.js +0 -1
- package/icons/bootstrap/safe2-fill.js +0 -1
- package/icons/bootstrap/safe2.js +0 -1
- package/icons/bootstrap/save-fill.js +0 -1
- package/icons/bootstrap/save.js +0 -1
- package/icons/bootstrap/save2-fill.js +0 -1
- package/icons/bootstrap/save2.js +0 -1
- package/icons/bootstrap/scissors.js +0 -1
- package/icons/bootstrap/scooter.js +0 -1
- package/icons/bootstrap/screwdriver.js +0 -1
- package/icons/bootstrap/sd-card-fill.js +0 -1
- package/icons/bootstrap/sd-card.js +0 -1
- package/icons/bootstrap/search-heart-fill.js +0 -1
- package/icons/bootstrap/search-heart.js +0 -1
- package/icons/bootstrap/search.js +0 -1
- package/icons/bootstrap/segmented-nav.js +0 -1
- package/icons/bootstrap/send-arrow-down-fill.js +0 -1
- package/icons/bootstrap/send-arrow-down.js +0 -1
- package/icons/bootstrap/send-arrow-up-fill.js +0 -1
- package/icons/bootstrap/send-arrow-up.js +0 -1
- package/icons/bootstrap/send-check-fill.js +0 -1
- package/icons/bootstrap/send-check.js +0 -1
- package/icons/bootstrap/send-dash-fill.js +0 -1
- package/icons/bootstrap/send-dash.js +0 -1
- package/icons/bootstrap/send-exclamation-fill.js +0 -1
- package/icons/bootstrap/send-exclamation.js +0 -1
- package/icons/bootstrap/send-fill.js +0 -1
- package/icons/bootstrap/send-plus-fill.js +0 -1
- package/icons/bootstrap/send-plus.js +0 -1
- package/icons/bootstrap/send-slash-fill.js +0 -1
- package/icons/bootstrap/send-slash.js +0 -1
- package/icons/bootstrap/send-x-fill.js +0 -1
- package/icons/bootstrap/send-x.js +0 -1
- package/icons/bootstrap/send.js +0 -1
- package/icons/bootstrap/server.js +0 -1
- package/icons/bootstrap/shadows.js +0 -1
- package/icons/bootstrap/share-fill.js +0 -1
- package/icons/bootstrap/share.js +0 -1
- package/icons/bootstrap/shield-check.js +0 -1
- package/icons/bootstrap/shield-exclamation.js +0 -1
- package/icons/bootstrap/shield-fill-check.js +0 -1
- package/icons/bootstrap/shield-fill-exclamation.js +0 -1
- package/icons/bootstrap/shield-fill-minus.js +0 -1
- package/icons/bootstrap/shield-fill-plus.js +0 -1
- package/icons/bootstrap/shield-fill-x.js +0 -1
- package/icons/bootstrap/shield-fill.js +0 -1
- package/icons/bootstrap/shield-lock-fill.js +0 -1
- package/icons/bootstrap/shield-lock.js +0 -1
- package/icons/bootstrap/shield-minus.js +0 -1
- package/icons/bootstrap/shield-plus.js +0 -1
- package/icons/bootstrap/shield-shaded.js +0 -1
- package/icons/bootstrap/shield-slash-fill.js +0 -1
- package/icons/bootstrap/shield-slash.js +0 -1
- package/icons/bootstrap/shield-x.js +0 -1
- package/icons/bootstrap/shield.js +0 -1
- package/icons/bootstrap/shift-fill.js +0 -1
- package/icons/bootstrap/shift.js +0 -1
- package/icons/bootstrap/shop-window.js +0 -1
- package/icons/bootstrap/shop.js +0 -1
- package/icons/bootstrap/shuffle.js +0 -1
- package/icons/bootstrap/sign-dead-end-fill.js +0 -1
- package/icons/bootstrap/sign-dead-end.js +0 -1
- package/icons/bootstrap/sign-do-not-enter-fill.js +0 -1
- package/icons/bootstrap/sign-do-not-enter.js +0 -1
- package/icons/bootstrap/sign-intersection-fill.js +0 -1
- package/icons/bootstrap/sign-intersection-side-fill.js +0 -1
- package/icons/bootstrap/sign-intersection-side.js +0 -1
- package/icons/bootstrap/sign-intersection-t-fill.js +0 -1
- package/icons/bootstrap/sign-intersection-t.js +0 -1
- package/icons/bootstrap/sign-intersection-y-fill.js +0 -1
- package/icons/bootstrap/sign-intersection-y.js +0 -1
- package/icons/bootstrap/sign-intersection.js +0 -1
- package/icons/bootstrap/sign-merge-left-fill.js +0 -1
- package/icons/bootstrap/sign-merge-left.js +0 -1
- package/icons/bootstrap/sign-merge-right-fill.js +0 -1
- package/icons/bootstrap/sign-merge-right.js +0 -1
- package/icons/bootstrap/sign-no-left-turn-fill.js +0 -1
- package/icons/bootstrap/sign-no-left-turn.js +0 -1
- package/icons/bootstrap/sign-no-parking-fill.js +0 -1
- package/icons/bootstrap/sign-no-parking.js +0 -1
- package/icons/bootstrap/sign-no-right-turn-fill.js +0 -1
- package/icons/bootstrap/sign-no-right-turn.js +0 -1
- package/icons/bootstrap/sign-railroad-fill.js +0 -1
- package/icons/bootstrap/sign-railroad.js +0 -1
- package/icons/bootstrap/sign-stop-fill.js +0 -1
- package/icons/bootstrap/sign-stop-lights-fill.js +0 -1
- package/icons/bootstrap/sign-stop-lights.js +0 -1
- package/icons/bootstrap/sign-stop.js +0 -1
- package/icons/bootstrap/sign-turn-left-fill.js +0 -1
- package/icons/bootstrap/sign-turn-left.js +0 -1
- package/icons/bootstrap/sign-turn-right-fill.js +0 -1
- package/icons/bootstrap/sign-turn-right.js +0 -1
- package/icons/bootstrap/sign-turn-slight-left-fill.js +0 -1
- package/icons/bootstrap/sign-turn-slight-left.js +0 -1
- package/icons/bootstrap/sign-turn-slight-right-fill.js +0 -1
- package/icons/bootstrap/sign-turn-slight-right.js +0 -1
- package/icons/bootstrap/sign-yield-fill.js +0 -1
- package/icons/bootstrap/sign-yield.js +0 -1
- package/icons/bootstrap/signal.js +0 -1
- package/icons/bootstrap/signpost-2-fill.js +0 -1
- package/icons/bootstrap/signpost-2.js +0 -1
- package/icons/bootstrap/signpost-fill.js +0 -1
- package/icons/bootstrap/signpost-split-fill.js +0 -1
- package/icons/bootstrap/signpost-split.js +0 -1
- package/icons/bootstrap/signpost.js +0 -1
- package/icons/bootstrap/sim-fill.js +0 -1
- package/icons/bootstrap/sim-slash-fill.js +0 -1
- package/icons/bootstrap/sim-slash.js +0 -1
- package/icons/bootstrap/sim.js +0 -1
- package/icons/bootstrap/sina-weibo.js +0 -1
- package/icons/bootstrap/skip-backward-btn-fill.js +0 -1
- package/icons/bootstrap/skip-backward-btn.js +0 -1
- package/icons/bootstrap/skip-backward-circle-fill.js +0 -1
- package/icons/bootstrap/skip-backward-circle.js +0 -1
- package/icons/bootstrap/skip-backward-fill.js +0 -1
- package/icons/bootstrap/skip-backward.js +0 -1
- package/icons/bootstrap/skip-end-btn-fill.js +0 -1
- package/icons/bootstrap/skip-end-btn.js +0 -1
- package/icons/bootstrap/skip-end-circle-fill.js +0 -1
- package/icons/bootstrap/skip-end-circle.js +0 -1
- package/icons/bootstrap/skip-end-fill.js +0 -1
- package/icons/bootstrap/skip-end.js +0 -1
- package/icons/bootstrap/skip-forward-btn-fill.js +0 -1
- package/icons/bootstrap/skip-forward-btn.js +0 -1
- package/icons/bootstrap/skip-forward-circle-fill.js +0 -1
- package/icons/bootstrap/skip-forward-circle.js +0 -1
- package/icons/bootstrap/skip-forward-fill.js +0 -1
- package/icons/bootstrap/skip-forward.js +0 -1
- package/icons/bootstrap/skip-start-btn-fill.js +0 -1
- package/icons/bootstrap/skip-start-btn.js +0 -1
- package/icons/bootstrap/skip-start-circle-fill.js +0 -1
- package/icons/bootstrap/skip-start-circle.js +0 -1
- package/icons/bootstrap/skip-start-fill.js +0 -1
- package/icons/bootstrap/skip-start.js +0 -1
- package/icons/bootstrap/skype.js +0 -1
- package/icons/bootstrap/slack.js +0 -1
- package/icons/bootstrap/slash-circle-fill.js +0 -1
- package/icons/bootstrap/slash-circle.js +0 -1
- package/icons/bootstrap/slash-lg.js +0 -1
- package/icons/bootstrap/slash-square-fill.js +0 -1
- package/icons/bootstrap/slash-square.js +0 -1
- package/icons/bootstrap/slash.js +0 -1
- package/icons/bootstrap/sliders.js +0 -1
- package/icons/bootstrap/sliders2-vertical.js +0 -1
- package/icons/bootstrap/sliders2.js +0 -1
- package/icons/bootstrap/smartwatch.js +0 -1
- package/icons/bootstrap/snapchat.js +0 -1
- package/icons/bootstrap/snow.js +0 -1
- package/icons/bootstrap/snow2.js +0 -1
- package/icons/bootstrap/snow3.js +0 -1
- package/icons/bootstrap/sort-alpha-down-alt.js +0 -1
- package/icons/bootstrap/sort-alpha-down.js +0 -1
- package/icons/bootstrap/sort-alpha-up-alt.js +0 -1
- package/icons/bootstrap/sort-alpha-up.js +0 -1
- package/icons/bootstrap/sort-down-alt.js +0 -1
- package/icons/bootstrap/sort-down.js +0 -1
- package/icons/bootstrap/sort-numeric-down-alt.js +0 -1
- package/icons/bootstrap/sort-numeric-down.js +0 -1
- package/icons/bootstrap/sort-numeric-up-alt.js +0 -1
- package/icons/bootstrap/sort-numeric-up.js +0 -1
- package/icons/bootstrap/sort-up-alt.js +0 -1
- package/icons/bootstrap/sort-up.js +0 -1
- package/icons/bootstrap/soundwave.js +0 -1
- package/icons/bootstrap/sourceforge.js +0 -1
- package/icons/bootstrap/speaker-fill.js +0 -1
- package/icons/bootstrap/speaker.js +0 -1
- package/icons/bootstrap/speedometer.js +0 -1
- package/icons/bootstrap/speedometer2.js +0 -1
- package/icons/bootstrap/spellcheck.js +0 -1
- package/icons/bootstrap/spotify.js +0 -1
- package/icons/bootstrap/square-fill.js +0 -1
- package/icons/bootstrap/square-half.js +0 -1
- package/icons/bootstrap/square.js +0 -1
- package/icons/bootstrap/stack-overflow.js +0 -1
- package/icons/bootstrap/stack.js +0 -1
- package/icons/bootstrap/star-fill.js +0 -1
- package/icons/bootstrap/star-half.js +0 -1
- package/icons/bootstrap/star.js +0 -1
- package/icons/bootstrap/stars.js +0 -1
- package/icons/bootstrap/steam.js +0 -1
- package/icons/bootstrap/stickies-fill.js +0 -1
- package/icons/bootstrap/stickies.js +0 -1
- package/icons/bootstrap/sticky-fill.js +0 -1
- package/icons/bootstrap/sticky.js +0 -1
- package/icons/bootstrap/stop-btn-fill.js +0 -1
- package/icons/bootstrap/stop-btn.js +0 -1
- package/icons/bootstrap/stop-circle-fill.js +0 -1
- package/icons/bootstrap/stop-circle.js +0 -1
- package/icons/bootstrap/stop-fill.js +0 -1
- package/icons/bootstrap/stop.js +0 -1
- package/icons/bootstrap/stoplights-fill.js +0 -1
- package/icons/bootstrap/stoplights.js +0 -1
- package/icons/bootstrap/stopwatch-fill.js +0 -1
- package/icons/bootstrap/stopwatch.js +0 -1
- package/icons/bootstrap/strava.js +0 -1
- package/icons/bootstrap/stripe.js +0 -1
- package/icons/bootstrap/subscript.js +0 -1
- package/icons/bootstrap/substack.js +0 -1
- package/icons/bootstrap/subtract.js +0 -1
- package/icons/bootstrap/suit-club-fill.js +0 -1
- package/icons/bootstrap/suit-club.js +0 -1
- package/icons/bootstrap/suit-diamond-fill.js +0 -1
- package/icons/bootstrap/suit-diamond.js +0 -1
- package/icons/bootstrap/suit-heart-fill.js +0 -1
- package/icons/bootstrap/suit-heart.js +0 -1
- package/icons/bootstrap/suit-spade-fill.js +0 -1
- package/icons/bootstrap/suit-spade.js +0 -1
- package/icons/bootstrap/suitcase-fill.js +0 -1
- package/icons/bootstrap/suitcase-lg-fill.js +0 -1
- package/icons/bootstrap/suitcase-lg.js +0 -1
- package/icons/bootstrap/suitcase.js +0 -1
- package/icons/bootstrap/suitcase2-fill.js +0 -1
- package/icons/bootstrap/suitcase2.js +0 -1
- package/icons/bootstrap/sun-fill.js +0 -1
- package/icons/bootstrap/sun.js +0 -1
- package/icons/bootstrap/sunglasses.js +0 -1
- package/icons/bootstrap/sunrise-fill.js +0 -1
- package/icons/bootstrap/sunrise.js +0 -1
- package/icons/bootstrap/sunset-fill.js +0 -1
- package/icons/bootstrap/sunset.js +0 -1
- package/icons/bootstrap/superscript.js +0 -1
- package/icons/bootstrap/symmetry-horizontal.js +0 -1
- package/icons/bootstrap/symmetry-vertical.js +0 -1
- package/icons/bootstrap/table.js +0 -1
- package/icons/bootstrap/tablet-fill.js +0 -1
- package/icons/bootstrap/tablet-landscape-fill.js +0 -1
- package/icons/bootstrap/tablet-landscape.js +0 -1
- package/icons/bootstrap/tablet.js +0 -1
- package/icons/bootstrap/tag-fill.js +0 -1
- package/icons/bootstrap/tag.js +0 -1
- package/icons/bootstrap/tags-fill.js +0 -1
- package/icons/bootstrap/tags.js +0 -1
- package/icons/bootstrap/taxi-front-fill.js +0 -1
- package/icons/bootstrap/taxi-front.js +0 -1
- package/icons/bootstrap/telegram.js +0 -1
- package/icons/bootstrap/telephone-fill.js +0 -1
- package/icons/bootstrap/telephone-forward-fill.js +0 -1
- package/icons/bootstrap/telephone-forward.js +0 -1
- package/icons/bootstrap/telephone-inbound-fill.js +0 -1
- package/icons/bootstrap/telephone-inbound.js +0 -1
- package/icons/bootstrap/telephone-minus-fill.js +0 -1
- package/icons/bootstrap/telephone-minus.js +0 -1
- package/icons/bootstrap/telephone-outbound-fill.js +0 -1
- package/icons/bootstrap/telephone-outbound.js +0 -1
- package/icons/bootstrap/telephone-plus-fill.js +0 -1
- package/icons/bootstrap/telephone-plus.js +0 -1
- package/icons/bootstrap/telephone-x-fill.js +0 -1
- package/icons/bootstrap/telephone-x.js +0 -1
- package/icons/bootstrap/telephone.js +0 -1
- package/icons/bootstrap/tencent-qq.js +0 -1
- package/icons/bootstrap/terminal-dash.js +0 -1
- package/icons/bootstrap/terminal-fill.js +0 -1
- package/icons/bootstrap/terminal-plus.js +0 -1
- package/icons/bootstrap/terminal-split.js +0 -1
- package/icons/bootstrap/terminal-x.js +0 -1
- package/icons/bootstrap/terminal.js +0 -1
- package/icons/bootstrap/text-center.js +0 -1
- package/icons/bootstrap/text-indent-left.js +0 -1
- package/icons/bootstrap/text-indent-right.js +0 -1
- package/icons/bootstrap/text-left.js +0 -1
- package/icons/bootstrap/text-paragraph.js +0 -1
- package/icons/bootstrap/text-right.js +0 -1
- package/icons/bootstrap/text-wrap.js +0 -1
- package/icons/bootstrap/textarea-resize.js +0 -1
- package/icons/bootstrap/textarea-t.js +0 -1
- package/icons/bootstrap/textarea.js +0 -1
- package/icons/bootstrap/thermometer-half.js +0 -1
- package/icons/bootstrap/thermometer-high.js +0 -1
- package/icons/bootstrap/thermometer-low.js +0 -1
- package/icons/bootstrap/thermometer-snow.js +0 -1
- package/icons/bootstrap/thermometer-sun.js +0 -1
- package/icons/bootstrap/thermometer.js +0 -1
- package/icons/bootstrap/threads-fill.js +0 -1
- package/icons/bootstrap/threads.js +0 -1
- package/icons/bootstrap/three-dots-vertical.js +0 -1
- package/icons/bootstrap/three-dots.js +0 -1
- package/icons/bootstrap/thunderbolt-fill.js +0 -1
- package/icons/bootstrap/thunderbolt.js +0 -1
- package/icons/bootstrap/ticket-detailed-fill.js +0 -1
- package/icons/bootstrap/ticket-detailed.js +0 -1
- package/icons/bootstrap/ticket-fill.js +0 -1
- package/icons/bootstrap/ticket-perforated-fill.js +0 -1
- package/icons/bootstrap/ticket-perforated.js +0 -1
- package/icons/bootstrap/ticket.js +0 -1
- package/icons/bootstrap/tiktok.js +0 -1
- package/icons/bootstrap/toggle-off.js +0 -1
- package/icons/bootstrap/toggle-on.js +0 -1
- package/icons/bootstrap/toggle2-off.js +0 -1
- package/icons/bootstrap/toggle2-on.js +0 -1
- package/icons/bootstrap/toggles.js +0 -1
- package/icons/bootstrap/toggles2.js +0 -1
- package/icons/bootstrap/tools.js +0 -1
- package/icons/bootstrap/tornado.js +0 -1
- package/icons/bootstrap/train-freight-front-fill.js +0 -1
- package/icons/bootstrap/train-freight-front.js +0 -1
- package/icons/bootstrap/train-front-fill.js +0 -1
- package/icons/bootstrap/train-front.js +0 -1
- package/icons/bootstrap/train-lightrail-front-fill.js +0 -1
- package/icons/bootstrap/train-lightrail-front.js +0 -1
- package/icons/bootstrap/translate.js +0 -1
- package/icons/bootstrap/transparency.js +0 -1
- package/icons/bootstrap/trash-fill.js +0 -1
- package/icons/bootstrap/trash.js +0 -1
- package/icons/bootstrap/trash2-fill.js +0 -1
- package/icons/bootstrap/trash2.js +0 -1
- package/icons/bootstrap/trash3-fill.js +0 -1
- package/icons/bootstrap/trash3.js +0 -1
- package/icons/bootstrap/tree-fill.js +0 -1
- package/icons/bootstrap/tree.js +0 -1
- package/icons/bootstrap/trello.js +0 -1
- package/icons/bootstrap/triangle-fill.js +0 -1
- package/icons/bootstrap/triangle-half.js +0 -1
- package/icons/bootstrap/triangle.js +0 -1
- package/icons/bootstrap/trophy-fill.js +0 -1
- package/icons/bootstrap/trophy.js +0 -1
- package/icons/bootstrap/tropical-storm.js +0 -1
- package/icons/bootstrap/truck-flatbed.js +0 -1
- package/icons/bootstrap/truck-front-fill.js +0 -1
- package/icons/bootstrap/truck-front.js +0 -1
- package/icons/bootstrap/truck.js +0 -1
- package/icons/bootstrap/tsunami.js +0 -1
- package/icons/bootstrap/tv-fill.js +0 -1
- package/icons/bootstrap/tv.js +0 -1
- package/icons/bootstrap/twitch.js +0 -1
- package/icons/bootstrap/twitter-x.js +0 -1
- package/icons/bootstrap/twitter.js +0 -1
- package/icons/bootstrap/type-bold.js +0 -1
- package/icons/bootstrap/type-h1.js +0 -1
- package/icons/bootstrap/type-h2.js +0 -1
- package/icons/bootstrap/type-h3.js +0 -1
- package/icons/bootstrap/type-h4.js +0 -1
- package/icons/bootstrap/type-h5.js +0 -1
- package/icons/bootstrap/type-h6.js +0 -1
- package/icons/bootstrap/type-italic.js +0 -1
- package/icons/bootstrap/type-strikethrough.js +0 -1
- package/icons/bootstrap/type-underline.js +0 -1
- package/icons/bootstrap/type.js +0 -1
- package/icons/bootstrap/ubuntu.js +0 -1
- package/icons/bootstrap/ui-checks-grid.js +0 -1
- package/icons/bootstrap/ui-checks.js +0 -1
- package/icons/bootstrap/ui-radios-grid.js +0 -1
- package/icons/bootstrap/ui-radios.js +0 -1
- package/icons/bootstrap/umbrella-fill.js +0 -1
- package/icons/bootstrap/umbrella.js +0 -1
- package/icons/bootstrap/unindent.js +0 -1
- package/icons/bootstrap/union.js +0 -1
- package/icons/bootstrap/unity.js +0 -1
- package/icons/bootstrap/universal-access-circle.js +0 -1
- package/icons/bootstrap/universal-access.js +0 -1
- package/icons/bootstrap/unlock-fill.js +0 -1
- package/icons/bootstrap/unlock.js +0 -1
- package/icons/bootstrap/upc-scan.js +0 -1
- package/icons/bootstrap/upc.js +0 -1
- package/icons/bootstrap/upload.js +0 -1
- package/icons/bootstrap/usb-c-fill.js +0 -1
- package/icons/bootstrap/usb-c.js +0 -1
- package/icons/bootstrap/usb-drive-fill.js +0 -1
- package/icons/bootstrap/usb-drive.js +0 -1
- package/icons/bootstrap/usb-fill.js +0 -1
- package/icons/bootstrap/usb-micro-fill.js +0 -1
- package/icons/bootstrap/usb-micro.js +0 -1
- package/icons/bootstrap/usb-mini-fill.js +0 -1
- package/icons/bootstrap/usb-mini.js +0 -1
- package/icons/bootstrap/usb-plug-fill.js +0 -1
- package/icons/bootstrap/usb-plug.js +0 -1
- package/icons/bootstrap/usb-symbol.js +0 -1
- package/icons/bootstrap/usb.js +0 -1
- package/icons/bootstrap/valentine.js +0 -1
- package/icons/bootstrap/valentine2.js +0 -1
- package/icons/bootstrap/vector-pen.js +0 -1
- package/icons/bootstrap/view-list.js +0 -1
- package/icons/bootstrap/view-stacked.js +0 -1
- package/icons/bootstrap/vignette.js +0 -1
- package/icons/bootstrap/vimeo.js +0 -1
- package/icons/bootstrap/vinyl-fill.js +0 -1
- package/icons/bootstrap/vinyl.js +0 -1
- package/icons/bootstrap/virus.js +0 -1
- package/icons/bootstrap/virus2.js +0 -1
- package/icons/bootstrap/voicemail.js +0 -1
- package/icons/bootstrap/volume-down-fill.js +0 -1
- package/icons/bootstrap/volume-down.js +0 -1
- package/icons/bootstrap/volume-mute-fill.js +0 -1
- package/icons/bootstrap/volume-mute.js +0 -1
- package/icons/bootstrap/volume-off-fill.js +0 -1
- package/icons/bootstrap/volume-off.js +0 -1
- package/icons/bootstrap/volume-up-fill.js +0 -1
- package/icons/bootstrap/volume-up.js +0 -1
- package/icons/bootstrap/vr.js +0 -1
- package/icons/bootstrap/wallet-fill.js +0 -1
- package/icons/bootstrap/wallet.js +0 -1
- package/icons/bootstrap/wallet2.js +0 -1
- package/icons/bootstrap/watch.js +0 -1
- package/icons/bootstrap/water.js +0 -1
- package/icons/bootstrap/webcam-fill.js +0 -1
- package/icons/bootstrap/webcam.js +0 -1
- package/icons/bootstrap/wechat.js +0 -1
- package/icons/bootstrap/whatsapp.js +0 -1
- package/icons/bootstrap/wifi-1.js +0 -1
- package/icons/bootstrap/wifi-2.js +0 -1
- package/icons/bootstrap/wifi-off.js +0 -1
- package/icons/bootstrap/wifi.js +0 -1
- package/icons/bootstrap/wikipedia.js +0 -1
- package/icons/bootstrap/wind.js +0 -1
- package/icons/bootstrap/window-dash.js +0 -1
- package/icons/bootstrap/window-desktop.js +0 -1
- package/icons/bootstrap/window-dock.js +0 -1
- package/icons/bootstrap/window-fullscreen.js +0 -1
- package/icons/bootstrap/window-plus.js +0 -1
- package/icons/bootstrap/window-sidebar.js +0 -1
- package/icons/bootstrap/window-split.js +0 -1
- package/icons/bootstrap/window-stack.js +0 -1
- package/icons/bootstrap/window-x.js +0 -1
- package/icons/bootstrap/window.js +0 -1
- package/icons/bootstrap/windows.js +0 -1
- package/icons/bootstrap/wordpress.js +0 -1
- package/icons/bootstrap/wrench-adjustable-circle-fill.js +0 -1
- package/icons/bootstrap/wrench-adjustable-circle.js +0 -1
- package/icons/bootstrap/wrench-adjustable.js +0 -1
- package/icons/bootstrap/wrench.js +0 -1
- package/icons/bootstrap/x-circle-fill.js +0 -1
- package/icons/bootstrap/x-circle.js +0 -1
- package/icons/bootstrap/x-diamond-fill.js +0 -1
- package/icons/bootstrap/x-diamond.js +0 -1
- package/icons/bootstrap/x-lg.js +0 -1
- package/icons/bootstrap/x-octagon-fill.js +0 -1
- package/icons/bootstrap/x-octagon.js +0 -1
- package/icons/bootstrap/x-square-fill.js +0 -1
- package/icons/bootstrap/x-square.js +0 -1
- package/icons/bootstrap/x.js +0 -1
- package/icons/bootstrap/xbox.js +0 -1
- package/icons/bootstrap/yelp.js +0 -1
- package/icons/bootstrap/yin-yang.js +0 -1
- package/icons/bootstrap/youtube.js +0 -1
- package/icons/bootstrap/zoom-in.js +0 -1
- package/icons/bootstrap/zoom-out.js +0 -1
- package/icons/gcp/access-context-manager.js +0 -1
- package/icons/gcp/administration.js +0 -1
- package/icons/gcp/advanced-agent-modeling.js +0 -1
- package/icons/gcp/advanced-solutions-lab.js +0 -1
- package/icons/gcp/agent-assist.js +0 -1
- package/icons/gcp/ai-hub.js +0 -1
- package/icons/gcp/ai-platform-unified.js +0 -1
- package/icons/gcp/ai-platform.js +0 -1
- package/icons/gcp/analytics-hub.js +0 -1
- package/icons/gcp/anthos-config-management.js +0 -1
- package/icons/gcp/anthos-service-mesh.js +0 -1
- package/icons/gcp/anthos.js +0 -1
- package/icons/gcp/api-analytics.js +0 -1
- package/icons/gcp/api-monetization.js +0 -1
- package/icons/gcp/api.js +0 -1
- package/icons/gcp/apigee-api-platform.js +0 -1
- package/icons/gcp/apigee-sense.js +0 -1
- package/icons/gcp/app-engine.js +0 -1
- package/icons/gcp/artifact-registry.js +0 -1
- package/icons/gcp/asset-inventory.js +0 -1
- package/icons/gcp/assured-workloads.js +0 -1
- package/icons/gcp/auto-ml-natural-language.js +0 -1
- package/icons/gcp/auto-ml-tables.js +0 -1
- package/icons/gcp/auto-ml-translation.js +0 -1
- package/icons/gcp/auto-ml-video-intelligence.js +0 -1
- package/icons/gcp/auto-ml-vision.js +0 -1
- package/icons/gcp/auto-ml.js +0 -1
- package/icons/gcp/bare-metal-solutions.js +0 -1
- package/icons/gcp/batch.js +0 -1
- package/icons/gcp/beyondcorp.js +0 -1
- package/icons/gcp/big-query.js +0 -1
- package/icons/gcp/bigtable.js +0 -1
- package/icons/gcp/billing.js +0 -1
- package/icons/gcp/binary-authorization.js +0 -1
- package/icons/gcp/catalog.js +0 -1
- package/icons/gcp/certificate-authority-service.js +0 -1
- package/icons/gcp/certificate-manager.js +0 -1
- package/icons/gcp/cloud-api-gateway.js +0 -1
- package/icons/gcp/cloud-apis.js +0 -1
- package/icons/gcp/cloud-armor.js +0 -1
- package/icons/gcp/cloud-asset-inventory.js +0 -1
- package/icons/gcp/cloud-audit-logs.js +0 -1
- package/icons/gcp/cloud-build.js +0 -1
- package/icons/gcp/cloud-cdn.js +0 -1
- package/icons/gcp/cloud-code.js +0 -1
- package/icons/gcp/cloud-composer.js +0 -1
- package/icons/gcp/cloud-data-fusion.js +0 -1
- package/icons/gcp/cloud-deploy.js +0 -1
- package/icons/gcp/cloud-deployment-manager.js +0 -1
- package/icons/gcp/cloud-dns.js +0 -1
- package/icons/gcp/cloud-domains.js +0 -1
- package/icons/gcp/cloud-ekm.js +0 -1
- package/icons/gcp/cloud-endpoints.js +0 -1
- package/icons/gcp/cloud-external-ip-addresses.js +0 -1
- package/icons/gcp/cloud-firewall-rules.js +0 -1
- package/icons/gcp/cloud-for-marketing.js +0 -1
- package/icons/gcp/cloud-functions.js +0 -1
- package/icons/gcp/cloud-generic.js +0 -1
- package/icons/gcp/cloud-gpu.js +0 -1
- package/icons/gcp/cloud-healthcare-api.js +0 -1
- package/icons/gcp/cloud-healthcare-marketplace.js +0 -1
- package/icons/gcp/cloud-hsm.js +0 -1
- package/icons/gcp/cloud-ids.js +0 -1
- package/icons/gcp/cloud-inference-api.js +0 -1
- package/icons/gcp/cloud-interconnect.js +0 -1
- package/icons/gcp/cloud-jobs-api.js +0 -1
- package/icons/gcp/cloud-load-balancing.js +0 -1
- package/icons/gcp/cloud-logging.js +0 -1
- package/icons/gcp/cloud-media-edge.js +0 -1
- package/icons/gcp/cloud-monitoring.js +0 -1
- package/icons/gcp/cloud-nat.js +0 -1
- package/icons/gcp/cloud-natural-language-api.js +0 -1
- package/icons/gcp/cloud-network.js +0 -1
- package/icons/gcp/cloud-ops.js +0 -1
- package/icons/gcp/cloud-optimization-ai-fleet-routing-api.js +0 -1
- package/icons/gcp/cloud-optimization-ai.js +0 -1
- package/icons/gcp/cloud-router.js +0 -1
- package/icons/gcp/cloud-routes.js +0 -1
- package/icons/gcp/cloud-run-for-anthos.js +0 -1
- package/icons/gcp/cloud-run.js +0 -1
- package/icons/gcp/cloud-scheduler.js +0 -1
- package/icons/gcp/cloud-security-scanner.js +0 -1
- package/icons/gcp/cloud-shell.js +0 -1
- package/icons/gcp/cloud-spanner.js +0 -1
- package/icons/gcp/cloud-sql.js +0 -1
- package/icons/gcp/cloud-storage.js +0 -1
- package/icons/gcp/cloud-tasks.js +0 -1
- package/icons/gcp/cloud-test-lab.js +0 -1
- package/icons/gcp/cloud-tpu.js +0 -1
- package/icons/gcp/cloud-translation-api.js +0 -1
- package/icons/gcp/cloud-vision-api.js +0 -1
- package/icons/gcp/cloud-vpn.js +0 -1
- package/icons/gcp/compute-engine.js +0 -1
- package/icons/gcp/configuration-management.js +0 -1
- package/icons/gcp/connectivity-test.js +0 -1
- package/icons/gcp/connectors.js +0 -1
- package/icons/gcp/contact-center-ai.js +0 -1
- package/icons/gcp/container-optimized-os.js +0 -1
- package/icons/gcp/container-registry.js +0 -1
- package/icons/gcp/data-catalog.js +0 -1
- package/icons/gcp/data-labeling.js +0 -1
- package/icons/gcp/data-layers.js +0 -1
- package/icons/gcp/data-loss-prevention-api.js +0 -1
- package/icons/gcp/data-qn-a.js +0 -1
- package/icons/gcp/data-studio.js +0 -1
- package/icons/gcp/data-transfer.js +0 -1
- package/icons/gcp/database-migration-service.js +0 -1
- package/icons/gcp/dataflow.js +0 -1
- package/icons/gcp/datalab.js +0 -1
- package/icons/gcp/dataplex.js +0 -1
- package/icons/gcp/datapol.js +0 -1
- package/icons/gcp/dataprep.js +0 -1
- package/icons/gcp/dataproc-metastore.js +0 -1
- package/icons/gcp/dataproc.js +0 -1
- package/icons/gcp/datashare.js +0 -1
- package/icons/gcp/datastore.js +0 -1
- package/icons/gcp/datastream.js +0 -1
- package/icons/gcp/debugger.js +0 -1
- package/icons/gcp/developer-portal.js +0 -1
- package/icons/gcp/dialogflow-cx.js +0 -1
- package/icons/gcp/dialogflow-insights.js +0 -1
- package/icons/gcp/dialogflow.js +0 -1
- package/icons/gcp/document-ai.js +0 -1
- package/icons/gcp/early-access-center.js +0 -1
- package/icons/gcp/error-reporting.js +0 -1
- package/icons/gcp/eventarc.js +0 -1
- package/icons/gcp/filestore.js +0 -1
- package/icons/gcp/financial-services-marketplace.js +0 -1
- package/icons/gcp/firestore.js +0 -1
- package/icons/gcp/fleet-engine.js +0 -1
- package/icons/gcp/free-trial.js +0 -1
- package/icons/gcp/game-servers.js +0 -1
- package/icons/gcp/gce-systems-management.js +0 -1
- package/icons/gcp/genomics.js +0 -1
- package/icons/gcp/gke-on-prem.js +0 -1
- package/icons/gcp/google-cloud-marketplace.js +0 -1
- package/icons/gcp/google-kubernetes-engine.js +0 -1
- package/icons/gcp/google-maps-platform.js +0 -1
- package/icons/gcp/healthcare-nlp-api.js +0 -1
- package/icons/gcp/home.js +0 -1
- package/icons/gcp/identity-and-access-management.js +0 -1
- package/icons/gcp/identity-aware-proxy.js +0 -1
- package/icons/gcp/identity-platform.js +0 -1
- package/icons/gcp/iot-core.js +0 -1
- package/icons/gcp/iot-edge.js +0 -1
- package/icons/gcp/key-access-justifications.js +0 -1
- package/icons/gcp/key-management-service.js +0 -1
- package/icons/gcp/kuberun.js +0 -1
- package/icons/gcp/launcher.js +0 -1
- package/icons/gcp/local-ssd.js +0 -1
- package/icons/gcp/looker.js +0 -1
- package/icons/gcp/managed-service-for-microsoft-active-directory.js +0 -1
- package/icons/gcp/media-translation-api.js +0 -1
- package/icons/gcp/memorystore.js +0 -1
- package/icons/gcp/migrate-for-anthos.js +0 -1
- package/icons/gcp/migrate-for-compute-engine.js +0 -1
- package/icons/gcp/my-cloud.js +0 -1
- package/icons/gcp/network-connectivity-center.js +0 -1
- package/icons/gcp/network-intelligence-center.js +0 -1
- package/icons/gcp/network-security.js +0 -1
- package/icons/gcp/network-tiers.js +0 -1
- package/icons/gcp/network-topology.js +0 -1
- package/icons/gcp/onboarding.js +0 -1
- package/icons/gcp/os-configuration-management.js +0 -1
- package/icons/gcp/os-inventory-management.js +0 -1
- package/icons/gcp/os-patch-management.js +0 -1
- package/icons/gcp/partner-interconnect.js +0 -1
- package/icons/gcp/partner-portal.js +0 -1
- package/icons/gcp/performance-dashboard.js +0 -1
- package/icons/gcp/permissions.js +0 -1
- package/icons/gcp/persistent-disk.js +0 -1
- package/icons/gcp/phishing-protection.js +0 -1
- package/icons/gcp/policy-analyzer.js +0 -1
- package/icons/gcp/premium-network-tier.js +0 -1
- package/icons/gcp/private-connectivity.js +0 -1
- package/icons/gcp/private-service-connect.js +0 -1
- package/icons/gcp/producer-portal.js +0 -1
- package/icons/gcp/profiler.js +0 -1
- package/icons/gcp/project.js +0 -1
- package/icons/gcp/pub-sub.js +0 -1
- package/icons/gcp/quantum-engine.js +0 -1
- package/icons/gcp/quotas.js +0 -1
- package/icons/gcp/real-world-insights.js +0 -1
- package/icons/gcp/recommendations-ai.js +0 -1
- package/icons/gcp/release-notes.js +0 -1
- package/icons/gcp/retail-api.js +0 -1
- package/icons/gcp/risk-manager.js +0 -1
- package/icons/gcp/runtime-config.js +0 -1
- package/icons/gcp/secret-manager.js +0 -1
- package/icons/gcp/security-command-center.js +0 -1
- package/icons/gcp/security-health-advisor.js +0 -1
- package/icons/gcp/security-key-enforcement.js +0 -1
- package/icons/gcp/security.js +0 -1
- package/icons/gcp/service-discovery.js +0 -1
- package/icons/gcp/speech-to-text.js +0 -1
- package/icons/gcp/stackdriver.js +0 -1
- package/icons/gcp/standard-network-tier.js +0 -1
- package/icons/gcp/stream-suite.js +0 -1
- package/icons/gcp/support.js +0 -1
- package/icons/gcp/tensorflow-enterprise.js +0 -1
- package/icons/gcp/text-to-speech.js +0 -1
- package/icons/gcp/tools-for-powershell.js +0 -1
- package/icons/gcp/trace.js +0 -1
- package/icons/gcp/traffic-director.js +0 -1
- package/icons/gcp/transfer-appliance.js +0 -1
- package/icons/gcp/transfer.js +0 -1
- package/icons/gcp/user-preferences.js +0 -1
- package/icons/gcp/vertex-ai.js +0 -1
- package/icons/gcp/video-intelligence-api.js +0 -1
- package/icons/gcp/virtual-private-cloud.js +0 -1
- package/icons/gcp/visual-inspection.js +0 -1
- package/icons/gcp/vmware-engine.js +0 -1
- package/icons/gcp/web-risk.js +0 -1
- package/icons/gcp/web-security-scanner.js +0 -1
- package/icons/gcp/workflows.js +0 -1
- package/icons/gcp/workload-identity-pool.js +0 -1
- package/icons/icon.d.ts +0 -2
- package/icons/tech/100tb.js +0 -1
- package/icons/tech/500px.js +0 -1
- package/icons/tech/aarch64.js +0 -1
- package/icons/tech/active-campaign-icon.js +0 -1
- package/icons/tech/active-campaign.js +0 -1
- package/icons/tech/adobe-after-effects.js +0 -1
- package/icons/tech/adobe-animate.js +0 -1
- package/icons/tech/adobe-dreamweaver.js +0 -1
- package/icons/tech/adobe-icon.js +0 -1
- package/icons/tech/adobe-illustrator.js +0 -1
- package/icons/tech/adobe-incopy.js +0 -1
- package/icons/tech/adobe-indesign.js +0 -1
- package/icons/tech/adobe-lightroom.js +0 -1
- package/icons/tech/adobe-photoshop.js +0 -1
- package/icons/tech/adobe-premiere-pro.js +0 -1
- package/icons/tech/adobe-premiere.js +0 -1
- package/icons/tech/adobe-xd.js +0 -1
- package/icons/tech/adobe.js +0 -1
- package/icons/tech/adonis-js.js +0 -1
- package/icons/tech/adonisjs-icon.js +0 -1
- package/icons/tech/adroll.js +0 -1
- package/icons/tech/adyen.js +0 -1
- package/icons/tech/aerogear.js +0 -1
- package/icons/tech/aerospike-icon.js +0 -1
- package/icons/tech/aerospike.js +0 -1
- package/icons/tech/after-effects.js +0 -1
- package/icons/tech/aha.js +0 -1
- package/icons/tech/airbnb-icon.js +0 -1
- package/icons/tech/airbnb.js +0 -1
- package/icons/tech/airbrake.js +0 -1
- package/icons/tech/airflow-icon.js +0 -1
- package/icons/tech/airflow.js +0 -1
- package/icons/tech/airtable.js +0 -1
- package/icons/tech/aix.js +0 -1
- package/icons/tech/akamai.js +0 -1
- package/icons/tech/akka.js +0 -1
- package/icons/tech/alfresco.js +0 -1
- package/icons/tech/algolia.js +0 -1
- package/icons/tech/alpinejs-icon.js +0 -1
- package/icons/tech/alpinejs.js +0 -1
- package/icons/tech/altair.js +0 -1
- package/icons/tech/amazon-chime.js +0 -1
- package/icons/tech/amazon-connect.js +0 -1
- package/icons/tech/amazon-web-services.js +0 -1
- package/icons/tech/amd.js +0 -1
- package/icons/tech/amex-digital.js +0 -1
- package/icons/tech/amex.js +0 -1
- package/icons/tech/amp-icon.js +0 -1
- package/icons/tech/amp.js +0 -1
- package/icons/tech/ampersand.js +0 -1
- package/icons/tech/amplication-icon.js +0 -1
- package/icons/tech/amplication.js +0 -1
- package/icons/tech/amplitude-icon.js +0 -1
- package/icons/tech/amplitude.js +0 -1
- package/icons/tech/anaconda.js +0 -1
- package/icons/tech/analog.js +0 -1
- package/icons/tech/android-icon.js +0 -1
- package/icons/tech/android-studio.js +0 -1
- package/icons/tech/android-vertical.js +0 -1
- package/icons/tech/android.js +0 -1
- package/icons/tech/angellist.js +0 -1
- package/icons/tech/angular-icon.js +0 -1
- package/icons/tech/angular-js.js +0 -1
- package/icons/tech/angular.js +0 -1
- package/icons/tech/ansible.js +0 -1
- package/icons/tech/ant-design.js +0 -1
- package/icons/tech/anthropic-icon.js +0 -1
- package/icons/tech/anthropic.js +0 -1
- package/icons/tech/apache-camel.js +0 -1
- package/icons/tech/apache-cloudstack.js +0 -1
- package/icons/tech/apache-flink-icon.js +0 -1
- package/icons/tech/apache-flink.js +0 -1
- package/icons/tech/apache-spark.js +0 -1
- package/icons/tech/apache-superset-icon.js +0 -1
- package/icons/tech/apache-superset.js +0 -1
- package/icons/tech/apache.js +0 -1
- package/icons/tech/apiary.js +0 -1
- package/icons/tech/apidog-icon.js +0 -1
- package/icons/tech/apidog.js +0 -1
- package/icons/tech/apl.js +0 -1
- package/icons/tech/apollostack.js +0 -1
- package/icons/tech/apostrophe.js +0 -1
- package/icons/tech/appbaseio-icon.js +0 -1
- package/icons/tech/appbaseio.js +0 -1
- package/icons/tech/appcelerator.js +0 -1
- package/icons/tech/appcenter-icon.js +0 -1
- package/icons/tech/appcenter.js +0 -1
- package/icons/tech/appcircle-icon.js +0 -1
- package/icons/tech/appcircle.js +0 -1
- package/icons/tech/appcode.js +0 -1
- package/icons/tech/appdynamics-icon.js +0 -1
- package/icons/tech/appdynamics.js +0 -1
- package/icons/tech/appium.js +0 -1
- package/icons/tech/apple-app-store.js +0 -1
- package/icons/tech/apple-pay.js +0 -1
- package/icons/tech/apple-safari.js +0 -1
- package/icons/tech/apple.js +0 -1
- package/icons/tech/applitools-icon.js +0 -1
- package/icons/tech/applitools.js +0 -1
- package/icons/tech/appsignal-icon.js +0 -1
- package/icons/tech/appsignal.js +0 -1
- package/icons/tech/apptentive.js +0 -1
- package/icons/tech/appveyor.js +0 -1
- package/icons/tech/appwrite-icon.js +0 -1
- package/icons/tech/appwrite.js +0 -1
- package/icons/tech/arangodb-icon.js +0 -1
- package/icons/tech/arangodb.js +0 -1
- package/icons/tech/arc.js +0 -1
- package/icons/tech/architect-icon.js +0 -1
- package/icons/tech/architect.js +0 -1
- package/icons/tech/archlinux.js +0 -1
- package/icons/tech/arduino.js +0 -1
- package/icons/tech/argo-icon.js +0 -1
- package/icons/tech/argo.js +0 -1
- package/icons/tech/argocd.js +0 -1
- package/icons/tech/arm.js +0 -1
- package/icons/tech/armory-icon.js +0 -1
- package/icons/tech/armory.js +0 -1
- package/icons/tech/asana-icon.js +0 -1
- package/icons/tech/asana.js +0 -1
- package/icons/tech/asciidoctor.js +0 -1
- package/icons/tech/assembla-icon.js +0 -1
- package/icons/tech/assembla.js +0 -1
- package/icons/tech/astro-icon.js +0 -1
- package/icons/tech/astro.js +0 -1
- package/icons/tech/astronomer.js +0 -1
- package/icons/tech/async-api-icon.js +0 -1
- package/icons/tech/async-api.js +0 -1
- package/icons/tech/atlassian.js +0 -1
- package/icons/tech/atom-icon.js +0 -1
- package/icons/tech/atom.js +0 -1
- package/icons/tech/atomic-icon.js +0 -1
- package/icons/tech/atomic.js +0 -1
- package/icons/tech/atomicojs-icon.js +0 -1
- package/icons/tech/atomicojs.js +0 -1
- package/icons/tech/aurelia.js +0 -1
- package/icons/tech/aurora.js +0 -1
- package/icons/tech/auth0-icon.js +0 -1
- package/icons/tech/auth0.js +0 -1
- package/icons/tech/authy.js +0 -1
- package/icons/tech/autodesk-maya.js +0 -1
- package/icons/tech/autodesk-shot-grid.js +0 -1
- package/icons/tech/autoit.js +0 -1
- package/icons/tech/autoprefixer.js +0 -1
- package/icons/tech/ava.js +0 -1
- package/icons/tech/awesome.js +0 -1
- package/icons/tech/awk.js +0 -1
- package/icons/tech/aws-amplify.js +0 -1
- package/icons/tech/aws-api-gateway.js +0 -1
- package/icons/tech/aws-app-mesh.js +0 -1
- package/icons/tech/aws-appflow.js +0 -1
- package/icons/tech/aws-appsync.js +0 -1
- package/icons/tech/aws-athena.js +0 -1
- package/icons/tech/aws-aurora.js +0 -1
- package/icons/tech/aws-backup.js +0 -1
- package/icons/tech/aws-batch.js +0 -1
- package/icons/tech/aws-certificate-manager.js +0 -1
- package/icons/tech/aws-cloudformation.js +0 -1
- package/icons/tech/aws-cloudfront.js +0 -1
- package/icons/tech/aws-cloudsearch.js +0 -1
- package/icons/tech/aws-cloudtrail.js +0 -1
- package/icons/tech/aws-cloudwatch.js +0 -1
- package/icons/tech/aws-codebuild.js +0 -1
- package/icons/tech/aws-codecommit.js +0 -1
- package/icons/tech/aws-codedeploy.js +0 -1
- package/icons/tech/aws-codepipeline.js +0 -1
- package/icons/tech/aws-codestar.js +0 -1
- package/icons/tech/aws-cognito.js +0 -1
- package/icons/tech/aws-config.js +0 -1
- package/icons/tech/aws-documentdb.js +0 -1
- package/icons/tech/aws-dynamodb.js +0 -1
- package/icons/tech/aws-ec2.js +0 -1
- package/icons/tech/aws-ecs.js +0 -1
- package/icons/tech/aws-eks.js +0 -1
- package/icons/tech/aws-elastic-beanstalk.js +0 -1
- package/icons/tech/aws-elasticache.js +0 -1
- package/icons/tech/aws-elb.js +0 -1
- package/icons/tech/aws-eventbridge.js +0 -1
- package/icons/tech/aws-fargate.js +0 -1
- package/icons/tech/aws-glacier.js +0 -1
- package/icons/tech/aws-glue.js +0 -1
- package/icons/tech/aws-iam.js +0 -1
- package/icons/tech/aws-keyspaces.js +0 -1
- package/icons/tech/aws-kinesis.js +0 -1
- package/icons/tech/aws-kms.js +0 -1
- package/icons/tech/aws-lake-formation.js +0 -1
- package/icons/tech/aws-lambda.js +0 -1
- package/icons/tech/aws-lightsail.js +0 -1
- package/icons/tech/aws-mq.js +0 -1
- package/icons/tech/aws-msk.js +0 -1
- package/icons/tech/aws-neptune.js +0 -1
- package/icons/tech/aws-open-search.js +0 -1
- package/icons/tech/aws-opsworks.js +0 -1
- package/icons/tech/aws-quicksight.js +0 -1
- package/icons/tech/aws-rds.js +0 -1
- package/icons/tech/aws-redshift.js +0 -1
- package/icons/tech/aws-route53.js +0 -1
- package/icons/tech/aws-s3.js +0 -1
- package/icons/tech/aws-secrets-manager.js +0 -1
- package/icons/tech/aws-ses.js +0 -1
- package/icons/tech/aws-shield.js +0 -1
- package/icons/tech/aws-sns.js +0 -1
- package/icons/tech/aws-sqs.js +0 -1
- package/icons/tech/aws-step-functions.js +0 -1
- package/icons/tech/aws-systems-manager.js +0 -1
- package/icons/tech/aws-timestream.js +0 -1
- package/icons/tech/aws-vpc.js +0 -1
- package/icons/tech/aws-waf.js +0 -1
- package/icons/tech/aws-xray.js +0 -1
- package/icons/tech/aws.js +0 -1
- package/icons/tech/axios.js +0 -1
- package/icons/tech/azios.js +0 -1
- package/icons/tech/azure-devops.js +0 -1
- package/icons/tech/azure-sql-database.js +0 -1
- package/icons/tech/azure.js +0 -1
- package/icons/tech/babel.js +0 -1
- package/icons/tech/backbone-icon.js +0 -1
- package/icons/tech/backbone-js.js +0 -1
- package/icons/tech/backbone.js +0 -1
- package/icons/tech/backerkit.js +0 -1
- package/icons/tech/baker-street.js +0 -1
- package/icons/tech/balena.js +0 -1
- package/icons/tech/ballerina.js +0 -1
- package/icons/tech/bamboo.js +0 -1
- package/icons/tech/basecamp-icon.js +0 -1
- package/icons/tech/basecamp.js +0 -1
- package/icons/tech/basekit.js +0 -1
- package/icons/tech/baseline.js +0 -1
- package/icons/tech/bash-icon.js +0 -1
- package/icons/tech/bash.js +0 -1
- package/icons/tech/batch.js +0 -1
- package/icons/tech/beats.js +0 -1
- package/icons/tech/behance.js +0 -1
- package/icons/tech/bem-2.js +0 -1
- package/icons/tech/bem.js +0 -1
- package/icons/tech/bigpanda.js +0 -1
- package/icons/tech/bing.js +0 -1
- package/icons/tech/biomejs-icon.js +0 -1
- package/icons/tech/biomejs.js +0 -1
- package/icons/tech/bitbar.js +0 -1
- package/icons/tech/bitbucket.js +0 -1
- package/icons/tech/bitcoin.js +0 -1
- package/icons/tech/bitnami.js +0 -1
- package/icons/tech/bitrise-icon.js +0 -1
- package/icons/tech/bitrise.js +0 -1
- package/icons/tech/blender.js +0 -1
- package/icons/tech/blitzjs-icon.js +0 -1
- package/icons/tech/blitzjs.js +0 -1
- package/icons/tech/blocs.js +0 -1
- package/icons/tech/blogger.js +0 -1
- package/icons/tech/blossom.js +0 -1
- package/icons/tech/blueprint.js +0 -1
- package/icons/tech/bluesky.js +0 -1
- package/icons/tech/bluetooth.js +0 -1
- package/icons/tech/booqable-icon.js +0 -1
- package/icons/tech/booqable.js +0 -1
- package/icons/tech/bootstrap.js +0 -1
- package/icons/tech/bosun.js +0 -1
- package/icons/tech/botanalytics.js +0 -1
- package/icons/tech/bourbon.js +0 -1
- package/icons/tech/bower.js +0 -1
- package/icons/tech/box.js +0 -1
- package/icons/tech/brackets.js +0 -1
- package/icons/tech/brainjs.js +0 -1
- package/icons/tech/branch-icon.js +0 -1
- package/icons/tech/branch.js +0 -1
- package/icons/tech/brandfolder-icon.js +0 -1
- package/icons/tech/brandfolder.js +0 -1
- package/icons/tech/brave.js +0 -1
- package/icons/tech/braze-icon.js +0 -1
- package/icons/tech/braze.js +0 -1
- package/icons/tech/broadcom-icon.js +0 -1
- package/icons/tech/broadcom.js +0 -1
- package/icons/tech/broccoli.js +0 -1
- package/icons/tech/brotli.js +0 -1
- package/icons/tech/browserify-icon.js +0 -1
- package/icons/tech/browserify.js +0 -1
- package/icons/tech/browserling.js +0 -1
- package/icons/tech/browserslist.js +0 -1
- package/icons/tech/browserstack.js +0 -1
- package/icons/tech/browsersync.js +0 -1
- package/icons/tech/brunch.js +0 -1
- package/icons/tech/bubble-icon.js +0 -1
- package/icons/tech/bubble.js +0 -1
- package/icons/tech/buck.js +0 -1
- package/icons/tech/buddy.js +0 -1
- package/icons/tech/buffer.js +0 -1
- package/icons/tech/bugherd-icon.js +0 -1
- package/icons/tech/bugherd.js +0 -1
- package/icons/tech/bugsee.js +0 -1
- package/icons/tech/bugsnag.js +0 -1
- package/icons/tech/builder-io-icon.js +0 -1
- package/icons/tech/builder-io.js +0 -1
- package/icons/tech/buildkite-icon.js +0 -1
- package/icons/tech/buildkite.js +0 -1
- package/icons/tech/bulma.js +0 -1
- package/icons/tech/bun.js +0 -1
- package/icons/tech/bunny-net-icon.js +0 -1
- package/icons/tech/bunny-net.js +0 -1
- package/icons/tech/c.js +0 -1
- package/icons/tech/cachet.js +0 -1
- package/icons/tech/cairo-graphics.js +0 -1
- package/icons/tech/cake-php.js +0 -1
- package/icons/tech/cakephp-icon.js +0 -1
- package/icons/tech/calibre-icon.js +0 -1
- package/icons/tech/calibre.js +0 -1
- package/icons/tech/campaignmonitor-icon.js +0 -1
- package/icons/tech/campaignmonitor.js +0 -1
- package/icons/tech/canjs.js +0 -1
- package/icons/tech/canva.js +0 -1
- package/icons/tech/capacitor.js +0 -1
- package/icons/tech/capacitorjs-icon.js +0 -1
- package/icons/tech/capacitorjs.js +0 -1
- package/icons/tech/capistrano.js +0 -1
- package/icons/tech/carbide.js +0 -1
- package/icons/tech/cardano-icon.js +0 -1
- package/icons/tech/cardano.js +0 -1
- package/icons/tech/cassandra.js +0 -1
- package/icons/tech/cent-os.js +0 -1
- package/icons/tech/centos-icon.js +0 -1
- package/icons/tech/certbot.js +0 -1
- package/icons/tech/ceylon.js +0 -1
- package/icons/tech/chai.js +0 -1
- package/icons/tech/chalk.js +0 -1
- package/icons/tech/chargebee-icon.js +0 -1
- package/icons/tech/chargebee.js +0 -1
- package/icons/tech/chartjs.js +0 -1
- package/icons/tech/chef.js +0 -1
- package/icons/tech/chevereto.js +0 -1
- package/icons/tech/chroma.js +0 -1
- package/icons/tech/chromatic-icon.js +0 -1
- package/icons/tech/chromatic.js +0 -1
- package/icons/tech/chrome-web-store.js +0 -1
- package/icons/tech/chrome.js +0 -1
- package/icons/tech/cinder.js +0 -1
- package/icons/tech/circle-ci.js +0 -1
- package/icons/tech/cirrus-ci.js +0 -1
- package/icons/tech/cirrus.js +0 -1
- package/icons/tech/clarity.js +0 -1
- package/icons/tech/claude-icon.js +0 -1
- package/icons/tech/claude.js +0 -1
- package/icons/tech/clio-lang.js +0 -1
- package/icons/tech/clion.js +0 -1
- package/icons/tech/cljs.js +0 -1
- package/icons/tech/clojure-script.js +0 -1
- package/icons/tech/clojure.js +0 -1
- package/icons/tech/close.js +0 -1
- package/icons/tech/cloud9.js +0 -1
- package/icons/tech/cloudacademy-icon.js +0 -1
- package/icons/tech/cloudacademy.js +0 -1
- package/icons/tech/cloudcraft.js +0 -1
- package/icons/tech/cloudflare-icon.js +0 -1
- package/icons/tech/cloudflare-workers-icon.js +0 -1
- package/icons/tech/cloudflare-workers.js +0 -1
- package/icons/tech/cloudflare.js +0 -1
- package/icons/tech/cloudinary-icon.js +0 -1
- package/icons/tech/cloudinary.js +0 -1
- package/icons/tech/cloudlinux.js +0 -1
- package/icons/tech/cmake.js +0 -1
- package/icons/tech/cobalt.js +0 -1
- package/icons/tech/cockpit.js +0 -1
- package/icons/tech/cocoapods.js +0 -1
- package/icons/tech/coda-icon.js +0 -1
- package/icons/tech/coda.js +0 -1
- package/icons/tech/codacy.js +0 -1
- package/icons/tech/code-igniter.js +0 -1
- package/icons/tech/code-pen.js +0 -1
- package/icons/tech/codeac.js +0 -1
- package/icons/tech/codebase.js +0 -1
- package/icons/tech/codebeat.js +0 -1
- package/icons/tech/codecademy.js +0 -1
- package/icons/tech/codeception.js +0 -1
- package/icons/tech/codeclimate-icon.js +0 -1
- package/icons/tech/codeclimate.js +0 -1
- package/icons/tech/codecov-icon.js +0 -1
- package/icons/tech/codecov.js +0 -1
- package/icons/tech/codefactor-icon.js +0 -1
- package/icons/tech/codefactor.js +0 -1
- package/icons/tech/codeigniter-icon.js +0 -1
- package/icons/tech/codepen-icon.js +0 -1
- package/icons/tech/codersrank-icon.js +0 -1
- package/icons/tech/codersrank.js +0 -1
- package/icons/tech/coderwall.js +0 -1
- package/icons/tech/codesandbox-icon.js +0 -1
- package/icons/tech/codesandbox.js +0 -1
- package/icons/tech/codesee-icon.js +0 -1
- package/icons/tech/codesee.js +0 -1
- package/icons/tech/codio.js +0 -1
- package/icons/tech/codium-icon.js +0 -1
- package/icons/tech/codium.js +0 -1
- package/icons/tech/coffee-script.js +0 -1
- package/icons/tech/commitizen.js +0 -1
- package/icons/tech/compass.js +0 -1
- package/icons/tech/componentkit.js +0 -1
- package/icons/tech/compose-multiplatform.js +0 -1
- package/icons/tech/compose.js +0 -1
- package/icons/tech/composer.js +0 -1
- package/icons/tech/conan-io.js +0 -1
- package/icons/tech/concourse.js +0 -1
- package/icons/tech/concretecms-icon.js +0 -1
- package/icons/tech/concretecms.js +0 -1
- package/icons/tech/conda.js +0 -1
- package/icons/tech/confluence.js +0 -1
- package/icons/tech/consul.js +0 -1
- package/icons/tech/contao.js +0 -1
- package/icons/tech/contentful.js +0 -1
- package/icons/tech/convox-icon.js +0 -1
- package/icons/tech/convox.js +0 -1
- package/icons/tech/copyleft-pirate.js +0 -1
- package/icons/tech/copyleft.js +0 -1
- package/icons/tech/corda.js +0 -1
- package/icons/tech/cordova.js +0 -1
- package/icons/tech/cosmosdb.js +0 -1
- package/icons/tech/couchbase.js +0 -1
- package/icons/tech/couchdb-icon.js +0 -1
- package/icons/tech/couchdb.js +0 -1
- package/icons/tech/coursera.js +0 -1
- package/icons/tech/coveralls.js +0 -1
- package/icons/tech/cpanel.js +0 -1
- package/icons/tech/cplusplus.js +0 -1
- package/icons/tech/craftcms.js +0 -1
- package/icons/tech/crashlytics.js +0 -1
- package/icons/tech/crateio.js +0 -1
- package/icons/tech/create-react-app.js +0 -1
- package/icons/tech/createjs.js +0 -1
- package/icons/tech/crossplane-icon.js +0 -1
- package/icons/tech/crossplane.js +0 -1
- package/icons/tech/crucible.js +0 -1
- package/icons/tech/crystal.js +0 -1
- package/icons/tech/csharp.js +0 -1
- package/icons/tech/css3-official.js +0 -1
- package/icons/tech/css3.js +0 -1
- package/icons/tech/cssnext.js +0 -1
- package/icons/tech/cube-icon.js +0 -1
- package/icons/tech/cube.js +0 -1
- package/icons/tech/cucumber.js +0 -1
- package/icons/tech/curl.js +0 -1
- package/icons/tech/customerio-icon.js +0 -1
- package/icons/tech/customerio.js +0 -1
- package/icons/tech/cyclejs.js +0 -1
- package/icons/tech/cypress-icon.js +0 -1
- package/icons/tech/cypress.js +0 -1
- package/icons/tech/d3.js +0 -1
- package/icons/tech/d3js.js +0 -1
- package/icons/tech/dailydev-icon.js +0 -1
- package/icons/tech/dailydev.js +0 -1
- package/icons/tech/daisy-ui-icon.js +0 -1
- package/icons/tech/daisy-ui.js +0 -1
- package/icons/tech/danfo.js +0 -1
- package/icons/tech/dart.js +0 -1
- package/icons/tech/dashlane-icon.js +0 -1
- package/icons/tech/dashlane.js +0 -1
- package/icons/tech/data-grip.js +0 -1
- package/icons/tech/data-spell.js +0 -1
- package/icons/tech/data-station.js +0 -1
- package/icons/tech/database-labs.js +0 -1
- package/icons/tech/datadog-icon.js +0 -1
- package/icons/tech/datadog.js +0 -1
- package/icons/tech/datasette-icon.js +0 -1
- package/icons/tech/datasette.js +0 -1
- package/icons/tech/datocms-icon.js +0 -1
- package/icons/tech/datocms.js +0 -1
- package/icons/tech/dbeaver.js +0 -1
- package/icons/tech/dbt-icon.js +0 -1
- package/icons/tech/dbt.js +0 -1
- package/icons/tech/dcos-icon.js +0 -1
- package/icons/tech/dcos.js +0 -1
- package/icons/tech/debian.js +0 -1
- package/icons/tech/delighted-icon.js +0 -1
- package/icons/tech/delighted.js +0 -1
- package/icons/tech/deno.js +0 -1
- package/icons/tech/dependabot.js +0 -1
- package/icons/tech/deployhq-icon.js +0 -1
- package/icons/tech/deployhq.js +0 -1
- package/icons/tech/derby.js +0 -1
- package/icons/tech/descript-icon.js +0 -1
- package/icons/tech/descript.js +0 -1
- package/icons/tech/designernews.js +0 -1
- package/icons/tech/deviantart-icon.js +0 -1
- package/icons/tech/deviantart.js +0 -1
- package/icons/tech/devicon.js +0 -1
- package/icons/tech/dgraph-icon.js +0 -1
- package/icons/tech/dgraph.js +0 -1
- package/icons/tech/dialogflow.js +0 -1
- package/icons/tech/digital-ocean-icon.js +0 -1
- package/icons/tech/digital-ocean.js +0 -1
- package/icons/tech/dimer.js +0 -1
- package/icons/tech/dinersclub.js +0 -1
- package/icons/tech/discord-icon.js +0 -1
- package/icons/tech/discord-js.js +0 -1
- package/icons/tech/discord.js +0 -1
- package/icons/tech/discourse-icon.js +0 -1
- package/icons/tech/discourse.js +0 -1
- package/icons/tech/discover.js +0 -1
- package/icons/tech/disqus.js +0 -1
- package/icons/tech/django-icon.js +0 -1
- package/icons/tech/django-rest.js +0 -1
- package/icons/tech/django.js +0 -1
- package/icons/tech/dockbit.js +0 -1
- package/icons/tech/docker-icon.js +0 -1
- package/icons/tech/docker.js +0 -1
- package/icons/tech/doctrine.js +0 -1
- package/icons/tech/docusaurus.js +0 -1
- package/icons/tech/dojo-icon.js +0 -1
- package/icons/tech/dojo-toolkit.js +0 -1
- package/icons/tech/dojo.js +0 -1
- package/icons/tech/dolt.js +0 -1
- package/icons/tech/dotnet.js +0 -1
- package/icons/tech/dovetail-icon.js +0 -1
- package/icons/tech/dovetail.js +0 -1
- package/icons/tech/dreamhost.js +0 -1
- package/icons/tech/dribbble-icon.js +0 -1
- package/icons/tech/dribbble.js +0 -1
- package/icons/tech/drift.js +0 -1
- package/icons/tech/drip.js +0 -1
- package/icons/tech/drizzle-icon.js +0 -1
- package/icons/tech/drizzle.js +0 -1
- package/icons/tech/drone-icon.js +0 -1
- package/icons/tech/drone.js +0 -1
- package/icons/tech/drools-icon.js +0 -1
- package/icons/tech/drools.js +0 -1
- package/icons/tech/dropbox.js +0 -1
- package/icons/tech/dropmark.js +0 -1
- package/icons/tech/dropwizard.js +0 -1
- package/icons/tech/dropzone.js +0 -1
- package/icons/tech/drupal-icon.js +0 -1
- package/icons/tech/drupal.js +0 -1
- package/icons/tech/duckduckgo.js +0 -1
- package/icons/tech/dynatrace-icon.js +0 -1
- package/icons/tech/dynatrace.js +0 -1
- package/icons/tech/dyndns.js +0 -1
- package/icons/tech/ebanx.js +0 -1
- package/icons/tech/eclipse-ceylon.js +0 -1
- package/icons/tech/eclipse-icon.js +0 -1
- package/icons/tech/eclipse-ide.js +0 -1
- package/icons/tech/eclipse-vert-x.js +0 -1
- package/icons/tech/eclipse.js +0 -1
- package/icons/tech/ecma.js +0 -1
- package/icons/tech/edgedb.js +0 -1
- package/icons/tech/edgio-icon.js +0 -1
- package/icons/tech/edgio.js +0 -1
- package/icons/tech/editorconfig.js +0 -1
- package/icons/tech/effect-icon.js +0 -1
- package/icons/tech/effect.js +0 -1
- package/icons/tech/effector.js +0 -1
- package/icons/tech/egghead.js +0 -1
- package/icons/tech/elasticbeats.js +0 -1
- package/icons/tech/elasticpath-icon.js +0 -1
- package/icons/tech/elasticpath.js +0 -1
- package/icons/tech/elasticsearch.js +0 -1
- package/icons/tech/electron.js +0 -1
- package/icons/tech/element.js +0 -1
- package/icons/tech/elemental-ui.js +0 -1
- package/icons/tech/elementary.js +0 -1
- package/icons/tech/eleventy-11ty.js +0 -1
- package/icons/tech/eleventy.js +0 -1
- package/icons/tech/elixir.js +0 -1
- package/icons/tech/ello.js +0 -1
- package/icons/tech/elm-classic.js +0 -1
- package/icons/tech/elm.js +0 -1
- package/icons/tech/elo.js +0 -1
- package/icons/tech/emacs-classic.js +0 -1
- package/icons/tech/emacs.js +0 -1
- package/icons/tech/embedded-c.js +0 -1
- package/icons/tech/embedly.js +0 -1
- package/icons/tech/ember-js.js +0 -1
- package/icons/tech/ember-tomster.js +0 -1
- package/icons/tech/ember.js +0 -1
- package/icons/tech/emmet.js +0 -1
- package/icons/tech/enact.js +0 -1
- package/icons/tech/engine-yard-icon.js +0 -1
- package/icons/tech/engine-yard.js +0 -1
- package/icons/tech/envato.js +0 -1
- package/icons/tech/envoy-icon.js +0 -1
- package/icons/tech/envoy.js +0 -1
- package/icons/tech/envoyer.js +0 -1
- package/icons/tech/eraser-icon.js +0 -1
- package/icons/tech/eraser.js +0 -1
- package/icons/tech/erlang.js +0 -1
- package/icons/tech/esbuild.js +0 -1
- package/icons/tech/esdoc.js +0 -1
- package/icons/tech/eslint-old.js +0 -1
- package/icons/tech/eslint.js +0 -1
- package/icons/tech/eta-icon.js +0 -1
- package/icons/tech/eta.js +0 -1
- package/icons/tech/etcd.js +0 -1
- package/icons/tech/ethereum-color.js +0 -1
- package/icons/tech/ethereum.js +0 -1
- package/icons/tech/ethers.js +0 -1
- package/icons/tech/ethnio.js +0 -1
- package/icons/tech/eventbrite-icon.js +0 -1
- package/icons/tech/eventbrite.js +0 -1
- package/icons/tech/eventsentry.js +0 -1
- package/icons/tech/evergreen-icon.js +0 -1
- package/icons/tech/evergreen.js +0 -1
- package/icons/tech/expo-icon.js +0 -1
- package/icons/tech/expo.js +0 -1
- package/icons/tech/express.js +0 -1
- package/icons/tech/fabric.js +0 -1
- package/icons/tech/facebook.js +0 -1
- package/icons/tech/faker.js +0 -1
- package/icons/tech/falcor.js +0 -1
- package/icons/tech/fast-api.js +0 -1
- package/icons/tech/fastapi-icon.js +0 -1
- package/icons/tech/fastify-icon.js +0 -1
- package/icons/tech/fastify.js +0 -1
- package/icons/tech/fastlane.js +0 -1
- package/icons/tech/fastly.js +0 -1
- package/icons/tech/fauna-icon.js +0 -1
- package/icons/tech/fauna.js +0 -1
- package/icons/tech/feathers.js +0 -1
- package/icons/tech/feathersjs.js +0 -1
- package/icons/tech/fedora.js +0 -1
- package/icons/tech/fetch.js +0 -1
- package/icons/tech/ffmpeg-icon.js +0 -1
- package/icons/tech/ffmpeg.js +0 -1
- package/icons/tech/figma.js +0 -1
- package/icons/tech/file-zilla.js +0 -1
- package/icons/tech/firebase-icon.js +0 -1
- package/icons/tech/firebase.js +0 -1
- package/icons/tech/firefox.js +0 -1
- package/icons/tech/flannel.js +0 -1
- package/icons/tech/flarum.js +0 -1
- package/icons/tech/flask.js +0 -1
- package/icons/tech/flat-ui.js +0 -1
- package/icons/tech/flattr-icon.js +0 -1
- package/icons/tech/flattr.js +0 -1
- package/icons/tech/fleep.js +0 -1
- package/icons/tech/flickr-icon.js +0 -1
- package/icons/tech/flickr.js +0 -1
- package/icons/tech/flight.js +0 -1
- package/icons/tech/floodio.js +0 -1
- package/icons/tech/flow.js +0 -1
- package/icons/tech/flowxo.js +0 -1
- package/icons/tech/floydhub.js +0 -1
- package/icons/tech/flutter.js +0 -1
- package/icons/tech/flux.js +0 -1
- package/icons/tech/fluxxor.js +0 -1
- package/icons/tech/fly-icon.js +0 -1
- package/icons/tech/fly.js +0 -1
- package/icons/tech/fogbugz-icon.js +0 -1
- package/icons/tech/fogbugz.js +0 -1
- package/icons/tech/fomo-icon.js +0 -1
- package/icons/tech/fomo.js +0 -1
- package/icons/tech/font-awesome.js +0 -1
- package/icons/tech/forestadmin-icon.js +0 -1
- package/icons/tech/forestadmin.js +0 -1
- package/icons/tech/forever.js +0 -1
- package/icons/tech/formkeep.js +0 -1
- package/icons/tech/fortran.js +0 -1
- package/icons/tech/foundation.js +0 -1
- package/icons/tech/foundationdb-icon.js +0 -1
- package/icons/tech/foundationdb.js +0 -1
- package/icons/tech/framer.js +0 -1
- package/icons/tech/framework7-icon.js +0 -1
- package/icons/tech/framework7.js +0 -1
- package/icons/tech/freebsd.js +0 -1
- package/icons/tech/freedcamp-icon.js +0 -1
- package/icons/tech/freedcamp.js +0 -1
- package/icons/tech/freedomdefined.js +0 -1
- package/icons/tech/fresh.js +0 -1
- package/icons/tech/frontapp.js +0 -1
- package/icons/tech/fsharp.js +0 -1
- package/icons/tech/fuchsia.js +0 -1
- package/icons/tech/galliumos.js +0 -1
- package/icons/tech/game-analytics-icon.js +0 -1
- package/icons/tech/game-analytics.js +0 -1
- package/icons/tech/ganache-icon.js +0 -1
- package/icons/tech/ganache.js +0 -1
- package/icons/tech/gatling.js +0 -1
- package/icons/tech/gatsby.js +0 -1
- package/icons/tech/gazebo.js +0 -1
- package/icons/tech/gcc.js +0 -1
- package/icons/tech/geekbot.js +0 -1
- package/icons/tech/geetest-icon.js +0 -1
- package/icons/tech/geetest.js +0 -1
- package/icons/tech/gentoo.js +0 -1
- package/icons/tech/getyourguide.js +0 -1
- package/icons/tech/ghost.js +0 -1
- package/icons/tech/giantswarm.js +0 -1
- package/icons/tech/gimp.js +0 -1
- package/icons/tech/gin.js +0 -1
- package/icons/tech/git-icon.js +0 -1
- package/icons/tech/git.js +0 -1
- package/icons/tech/gitboard.js +0 -1
- package/icons/tech/gitbook.js +0 -1
- package/icons/tech/github-actions.js +0 -1
- package/icons/tech/github-codespaces.js +0 -1
- package/icons/tech/github-copilot.js +0 -1
- package/icons/tech/github-icon.js +0 -1
- package/icons/tech/github-octocat.js +0 -1
- package/icons/tech/github.js +0 -1
- package/icons/tech/gitkraken.js +0 -1
- package/icons/tech/gitlab-icon.js +0 -1
- package/icons/tech/gitlab.js +0 -1
- package/icons/tech/gitpod.js +0 -1
- package/icons/tech/gitter.js +0 -1
- package/icons/tech/gitup.js +0 -1
- package/icons/tech/glamorous-icon.js +0 -1
- package/icons/tech/glamorous.js +0 -1
- package/icons/tech/gleam.js +0 -1
- package/icons/tech/glimmerjs.js +0 -1
- package/icons/tech/glint.js +0 -1
- package/icons/tech/glitch-icon.js +0 -1
- package/icons/tech/glitch.js +0 -1
- package/icons/tech/gnome-icon.js +0 -1
- package/icons/tech/gnome.js +0 -1
- package/icons/tech/gnu-emacs.js +0 -1
- package/icons/tech/gnu-net.js +0 -1
- package/icons/tech/gnu.js +0 -1
- package/icons/tech/gnupg-icon.js +0 -1
- package/icons/tech/gnupg.js +0 -1
- package/icons/tech/go-land.js +0 -1
- package/icons/tech/go.js +0 -1
- package/icons/tech/gocd.js +0 -1
- package/icons/tech/godot-engine.js +0 -1
- package/icons/tech/godot-icon.js +0 -1
- package/icons/tech/godot.js +0 -1
- package/icons/tech/gohorse.js +0 -1
- package/icons/tech/google-360suite.js +0 -1
- package/icons/tech/google-admob.js +0 -1
- package/icons/tech/google-ads.js +0 -1
- package/icons/tech/google-adsense.js +0 -1
- package/icons/tech/google-analytics.js +0 -1
- package/icons/tech/google-bard-icon.js +0 -1
- package/icons/tech/google-bard.js +0 -1
- package/icons/tech/google-calendar.js +0 -1
- package/icons/tech/google-cloud-functions.js +0 -1
- package/icons/tech/google-cloud-run.js +0 -1
- package/icons/tech/google-cloud.js +0 -1
- package/icons/tech/google-data-studio.js +0 -1
- package/icons/tech/google-developers.js +0 -1
- package/icons/tech/google-domains-icon.js +0 -1
- package/icons/tech/google-domains.js +0 -1
- package/icons/tech/google-drive.js +0 -1
- package/icons/tech/google-fit.js +0 -1
- package/icons/tech/google-gemini.js +0 -1
- package/icons/tech/google-gmail.js +0 -1
- package/icons/tech/google-home.js +0 -1
- package/icons/tech/google-icon.js +0 -1
- package/icons/tech/google-keep.js +0 -1
- package/icons/tech/google-maps.js +0 -1
- package/icons/tech/google-marketing-platform.js +0 -1
- package/icons/tech/google-meet.js +0 -1
- package/icons/tech/google-one.js +0 -1
- package/icons/tech/google-optimize.js +0 -1
- package/icons/tech/google-palm.js +0 -1
- package/icons/tech/google-pay.js +0 -1
- package/icons/tech/google-photos.js +0 -1
- package/icons/tech/google-play-console-icon.js +0 -1
- package/icons/tech/google-play-console.js +0 -1
- package/icons/tech/google-play-icon.js +0 -1
- package/icons/tech/google-play.js +0 -1
- package/icons/tech/google-search-console.js +0 -1
- package/icons/tech/google-tag-manager.js +0 -1
- package/icons/tech/google-workspace.js +0 -1
- package/icons/tech/google.js +0 -1
- package/icons/tech/gopher.js +0 -1
- package/icons/tech/gradio-icon.js +0 -1
- package/icons/tech/gradio.js +0 -1
- package/icons/tech/gradle.js +0 -1
- package/icons/tech/grafana.js +0 -1
- package/icons/tech/grails.js +0 -1
- package/icons/tech/grammarly-icon.js +0 -1
- package/icons/tech/grammarly.js +0 -1
- package/icons/tech/graphene.js +0 -1
- package/icons/tech/graphql.js +0 -1
- package/icons/tech/grav.js +0 -1
- package/icons/tech/gravatar-icon.js +0 -1
- package/icons/tech/gravatar.js +0 -1
- package/icons/tech/graylog-icon.js +0 -1
- package/icons/tech/graylog.js +0 -1
- package/icons/tech/greensock-icon.js +0 -1
- package/icons/tech/greensock.js +0 -1
- package/icons/tech/gridsome-icon.js +0 -1
- package/icons/tech/gridsome.js +0 -1
- package/icons/tech/grommet.js +0 -1
- package/icons/tech/groovehq.js +0 -1
- package/icons/tech/groovy.js +0 -1
- package/icons/tech/grove.js +0 -1
- package/icons/tech/growth-book-icon.js +0 -1
- package/icons/tech/growth-book.js +0 -1
- package/icons/tech/grpc.js +0 -1
- package/icons/tech/grunt.js +0 -1
- package/icons/tech/gruntjs.js +0 -1
- package/icons/tech/gulp.js +0 -1
- package/icons/tech/gulpjs.js +0 -1
- package/icons/tech/gunicorn.js +0 -1
- package/icons/tech/gunjs.js +0 -1
- package/icons/tech/gusto.js +0 -1
- package/icons/tech/gwt.js +0 -1
- package/icons/tech/hack.js +0 -1
- package/icons/tech/hacker-one.js +0 -1
- package/icons/tech/hadoop.js +0 -1
- package/icons/tech/haiku-icon.js +0 -1
- package/icons/tech/haiku.js +0 -1
- package/icons/tech/haml.js +0 -1
- package/icons/tech/hanami.js +0 -1
- package/icons/tech/handlebars.js +0 -1
- package/icons/tech/hapi.js +0 -1
- package/icons/tech/hardhat-icon.js +0 -1
- package/icons/tech/hardhat.js +0 -1
- package/icons/tech/harness-icon.js +0 -1
- package/icons/tech/harness.js +0 -1
- package/icons/tech/harvester.js +0 -1
- package/icons/tech/hashicorp-icon.js +0 -1
- package/icons/tech/hashicorp-vault.js +0 -1
- package/icons/tech/hashicorp.js +0 -1
- package/icons/tech/hashnode-icon.js +0 -1
- package/icons/tech/hashnode.js +0 -1
- package/icons/tech/haskell-icon.js +0 -1
- package/icons/tech/haskell.js +0 -1
- package/icons/tech/hasura-icon.js +0 -1
- package/icons/tech/hasura.js +0 -1
- package/icons/tech/haxe.js +0 -1
- package/icons/tech/haxl.js +0 -1
- package/icons/tech/hbase.js +0 -1
- package/icons/tech/hcaptcha-icon.js +0 -1
- package/icons/tech/hcaptcha.js +0 -1
- package/icons/tech/headlessui-icon.js +0 -1
- package/icons/tech/headlessui.js +0 -1
- package/icons/tech/heap-icon.js +0 -1
- package/icons/tech/heap.js +0 -1
- package/icons/tech/helm.js +0 -1
- package/icons/tech/helpscout-icon.js +0 -1
- package/icons/tech/helpscout.js +0 -1
- package/icons/tech/hermes.js +0 -1
- package/icons/tech/heroku-icon.js +0 -1
- package/icons/tech/heroku-redis.js +0 -1
- package/icons/tech/heroku.js +0 -1
- package/icons/tech/hexo.js +0 -1
- package/icons/tech/hhvm.js +0 -1
- package/icons/tech/hibernate.js +0 -1
- package/icons/tech/highcharts.js +0 -1
- package/icons/tech/hipercard.js +0 -1
- package/icons/tech/homebrew.js +0 -1
- package/icons/tech/hono.js +0 -1
- package/icons/tech/hookstate.js +0 -1
- package/icons/tech/hootsuite-icon.js +0 -1
- package/icons/tech/hootsuite.js +0 -1
- package/icons/tech/hosted-graphite.js +0 -1
- package/icons/tech/hostgator-icon.js +0 -1
- package/icons/tech/hostgator.js +0 -1
- package/icons/tech/hotjar-icon.js +0 -1
- package/icons/tech/hotjar.js +0 -1
- package/icons/tech/houndci.js +0 -1
- package/icons/tech/html5-boilerplate.js +0 -1
- package/icons/tech/html5.js +0 -1
- package/icons/tech/htmx-icon.js +0 -1
- package/icons/tech/htmx.js +0 -1
- package/icons/tech/httpie-icon.js +0 -1
- package/icons/tech/httpie.js +0 -1
- package/icons/tech/hubspot.js +0 -1
- package/icons/tech/hugging-face-icon.js +0 -1
- package/icons/tech/hugging-face.js +0 -1
- package/icons/tech/huggy.js +0 -1
- package/icons/tech/hugo.js +0 -1
- package/icons/tech/humongous.js +0 -1
- package/icons/tech/hyper.js +0 -1
- package/icons/tech/hyperapp.js +0 -1
- package/icons/tech/ibm-spss-statistics.js +0 -1
- package/icons/tech/ibm.js +0 -1
- package/icons/tech/ie10.js +0 -1
- package/icons/tech/ieee.js +0 -1
- package/icons/tech/ietf.js +0 -1
- package/icons/tech/ifttt.js +0 -1
- package/icons/tech/imagemin.js +0 -1
- package/icons/tech/imba-icon.js +0 -1
- package/icons/tech/imba.js +0 -1
- package/icons/tech/immer-icon.js +0 -1
- package/icons/tech/immer.js +0 -1
- package/icons/tech/immutable.js +0 -1
- package/icons/tech/impala.js +0 -1
- package/icons/tech/importio-icon.js +0 -1
- package/icons/tech/importio.js +0 -1
- package/icons/tech/incident-icon.js +0 -1
- package/icons/tech/incident.js +0 -1
- package/icons/tech/infer.js +0 -1
- package/icons/tech/inferno.js +0 -1
- package/icons/tech/influxdb-icon.js +0 -1
- package/icons/tech/influxdb.js +0 -1
- package/icons/tech/ink.js +0 -1
- package/icons/tech/inkscape.js +0 -1
- package/icons/tech/insomnia.js +0 -1
- package/icons/tech/instagram-icon.js +0 -1
- package/icons/tech/instagram.js +0 -1
- package/icons/tech/intel.js +0 -1
- package/icons/tech/intellij-idea.js +0 -1
- package/icons/tech/intercom-icon.js +0 -1
- package/icons/tech/intercom.js +0 -1
- package/icons/tech/internet-computer-icon.js +0 -1
- package/icons/tech/internet-computer.js +0 -1
- package/icons/tech/internetexplorer.js +0 -1
- package/icons/tech/invision-icon.js +0 -1
- package/icons/tech/invision.js +0 -1
- package/icons/tech/ionic-icon.js +0 -1
- package/icons/tech/ionic.js +0 -1
- package/icons/tech/ios.js +0 -1
- package/icons/tech/iron-icon.js +0 -1
- package/icons/tech/iron.js +0 -1
- package/icons/tech/itsalive-icon.js +0 -1
- package/icons/tech/itsalive.js +0 -1
- package/icons/tech/jade.js +0 -1
- package/icons/tech/jaeger.js +0 -1
- package/icons/tech/jamstack-icon.js +0 -1
- package/icons/tech/jamstack.js +0 -1
- package/icons/tech/jasmine.js +0 -1
- package/icons/tech/java.js +0 -1
- package/icons/tech/javascript.js +0 -1
- package/icons/tech/jcb.js +0 -1
- package/icons/tech/jeet.js +0 -1
- package/icons/tech/jekyll.js +0 -1
- package/icons/tech/jenkins.js +0 -1
- package/icons/tech/jest.js +0 -1
- package/icons/tech/jetbrains-icon.js +0 -1
- package/icons/tech/jetbrains-space-icon.js +0 -1
- package/icons/tech/jetbrains-space.js +0 -1
- package/icons/tech/jetbrains.js +0 -1
- package/icons/tech/jfrog.js +0 -1
- package/icons/tech/jhipster-icon.js +0 -1
- package/icons/tech/jhipster.js +0 -1
- package/icons/tech/jira-align.js +0 -1
- package/icons/tech/jira.js +0 -1
- package/icons/tech/joomla.js +0 -1
- package/icons/tech/jotai.js +0 -1
- package/icons/tech/jquery-mobile.js +0 -1
- package/icons/tech/jquery.js +0 -1
- package/icons/tech/jruby.js +0 -1
- package/icons/tech/jsbin.js +0 -1
- package/icons/tech/jsdelivr.js +0 -1
- package/icons/tech/jsdom.js +0 -1
- package/icons/tech/jsfiddle.js +0 -1
- package/icons/tech/json-ld.js +0 -1
- package/icons/tech/json-schema-icon.js +0 -1
- package/icons/tech/json-schema.js +0 -1
- package/icons/tech/json.js +0 -1
- package/icons/tech/jspm.js +0 -1
- package/icons/tech/jss.js +0 -1
- package/icons/tech/juju.js +0 -1
- package/icons/tech/jule.js +0 -1
- package/icons/tech/julia.js +0 -1
- package/icons/tech/junit.js +0 -1
- package/icons/tech/jupyter.js +0 -1
- package/icons/tech/jwt-icon.js +0 -1
- package/icons/tech/jwt.js +0 -1
- package/icons/tech/k3os.js +0 -1
- package/icons/tech/k3s.js +0 -1
- package/icons/tech/kafka-icon.js +0 -1
- package/icons/tech/kafka.js +0 -1
- package/icons/tech/kaggle.js +0 -1
- package/icons/tech/kaios.js +0 -1
- package/icons/tech/kallithea.js +0 -1
- package/icons/tech/karate.js +0 -1
- package/icons/tech/karma.js +0 -1
- package/icons/tech/katalon-icon.js +0 -1
- package/icons/tech/katalon.js +0 -1
- package/icons/tech/kde.js +0 -1
- package/icons/tech/keen.js +0 -1
- package/icons/tech/kemal.js +0 -1
- package/icons/tech/keras.js +0 -1
- package/icons/tech/keycdn-icon.js +0 -1
- package/icons/tech/keycdn.js +0 -1
- package/icons/tech/keydb-icon.js +0 -1
- package/icons/tech/keydb.js +0 -1
- package/icons/tech/keystonejs.js +0 -1
- package/icons/tech/khan-academy-icon.js +0 -1
- package/icons/tech/khan-academy.js +0 -1
- package/icons/tech/kibana.js +0 -1
- package/icons/tech/kickstarter-icon.js +0 -1
- package/icons/tech/kickstarter.js +0 -1
- package/icons/tech/kinto-icon.js +0 -1
- package/icons/tech/kinto.js +0 -1
- package/icons/tech/kirby-icon.js +0 -1
- package/icons/tech/kirby.js +0 -1
- package/icons/tech/knex-js.js +0 -1
- package/icons/tech/knex.js +0 -1
- package/icons/tech/knockout.js +0 -1
- package/icons/tech/koa.js +0 -1
- package/icons/tech/kong-icon.js +0 -1
- package/icons/tech/kong.js +0 -1
- package/icons/tech/kops.js +0 -1
- package/icons/tech/koreio.js +0 -1
- package/icons/tech/kotlin-icon.js +0 -1
- package/icons/tech/kotlin.js +0 -1
- package/icons/tech/kraken.js +0 -1
- package/icons/tech/krakenjs.js +0 -1
- package/icons/tech/ktor-icon.js +0 -1
- package/icons/tech/ktor.js +0 -1
- package/icons/tech/kubernetes.js +0 -1
- package/icons/tech/kustomer.js +0 -1
- package/icons/tech/labview.js +0 -1
- package/icons/tech/languagetool.js +0 -1
- package/icons/tech/laravel.js +0 -1
- package/icons/tech/lastfm.js +0 -1
- package/icons/tech/lateral-icon.js +0 -1
- package/icons/tech/lateral.js +0 -1
- package/icons/tech/latex.js +0 -1
- package/icons/tech/launchdarkly-icon.js +0 -1
- package/icons/tech/launchdarkly.js +0 -1
- package/icons/tech/launchrock.js +0 -1
- package/icons/tech/leaflet.js +0 -1
- package/icons/tech/leankit-icon.js +0 -1
- package/icons/tech/leankit.js +0 -1
- package/icons/tech/lerna.js +0 -1
- package/icons/tech/less-js.js +0 -1
- package/icons/tech/less.js +0 -1
- package/icons/tech/lets-cloud.js +0 -1
- package/icons/tech/letsencrypt.js +0 -1
- package/icons/tech/leveldb.js +0 -1
- package/icons/tech/lexical-icon.js +0 -1
- package/icons/tech/lexical.js +0 -1
- package/icons/tech/liftweb.js +0 -1
- package/icons/tech/lighthouse.js +0 -1
- package/icons/tech/lightstep-icon.js +0 -1
- package/icons/tech/lightstep.js +0 -1
- package/icons/tech/lighttpd.js +0 -1
- package/icons/tech/linear-icon.js +0 -1
- package/icons/tech/linear.js +0 -1
- package/icons/tech/linkedin-icon.js +0 -1
- package/icons/tech/linkedin.js +0 -1
- package/icons/tech/linkerd.js +0 -1
- package/icons/tech/linode.js +0 -1
- package/icons/tech/linux-mint.js +0 -1
- package/icons/tech/linux-tux.js +0 -1
- package/icons/tech/linux.js +0 -1
- package/icons/tech/liquibase.js +0 -1
- package/icons/tech/lit-icon.js +0 -1
- package/icons/tech/lit.js +0 -1
- package/icons/tech/litmus.js +0 -1
- package/icons/tech/livewire.js +0 -1
- package/icons/tech/llvm.js +0 -1
- package/icons/tech/loader.js +0 -1
- package/icons/tech/lodash.js +0 -1
- package/icons/tech/logentries.js +0 -1
- package/icons/tech/logstash.js +0 -1
- package/icons/tech/lookback.js +0 -1
- package/icons/tech/looker-icon.js +0 -1
- package/icons/tech/looker.js +0 -1
- package/icons/tech/loom-icon.js +0 -1
- package/icons/tech/loom.js +0 -1
- package/icons/tech/loopback-icon.js +0 -1
- package/icons/tech/loopback.js +0 -1
- package/icons/tech/losant.js +0 -1
- package/icons/tech/lua.js +0 -1
- package/icons/tech/lucene-net.js +0 -1
- package/icons/tech/lucene.js +0 -1
- package/icons/tech/lumen.js +0 -1
- package/icons/tech/mac-os.js +0 -1
- package/icons/tech/madge.js +0 -1
- package/icons/tech/maestro.js +0 -1
- package/icons/tech/mageia.js +0 -1
- package/icons/tech/magento.js +0 -1
- package/icons/tech/mailchimp-freddie.js +0 -1
- package/icons/tech/mailchimp.js +0 -1
- package/icons/tech/maildeveloper.js +0 -1
- package/icons/tech/mailgun-icon.js +0 -1
- package/icons/tech/mailgun.js +0 -1
- package/icons/tech/mailjet-icon.js +0 -1
- package/icons/tech/mailjet.js +0 -1
- package/icons/tech/malinajs.js +0 -1
- package/icons/tech/manjaro.js +0 -1
- package/icons/tech/mantine-icon.js +0 -1
- package/icons/tech/mantine.js +0 -1
- package/icons/tech/mapbox-icon.js +0 -1
- package/icons/tech/mapbox.js +0 -1
- package/icons/tech/maps-me.js +0 -1
- package/icons/tech/mapzen-icon.js +0 -1
- package/icons/tech/mapzen.js +0 -1
- package/icons/tech/mariadb-icon.js +0 -1
- package/icons/tech/mariadb.js +0 -1
- package/icons/tech/marionette.js +0 -1
- package/icons/tech/markdown.js +0 -1
- package/icons/tech/marko.js +0 -1
- package/icons/tech/marvel.js +0 -1
- package/icons/tech/mastercard.js +0 -1
- package/icons/tech/mastodon-icon.js +0 -1
- package/icons/tech/mastodon.js +0 -1
- package/icons/tech/material-ui.js +0 -1
- package/icons/tech/materialize.js +0 -1
- package/icons/tech/materializecss.js +0 -1
- package/icons/tech/matlab.js +0 -1
- package/icons/tech/matomo-icon.js +0 -1
- package/icons/tech/matomo.js +0 -1
- package/icons/tech/matplotlib-icon.js +0 -1
- package/icons/tech/matplotlib.js +0 -1
- package/icons/tech/matter-icon.js +0 -1
- package/icons/tech/matter.js +0 -1
- package/icons/tech/mattermost-icon.js +0 -1
- package/icons/tech/mattermost.js +0 -1
- package/icons/tech/mautic-icon.js +0 -1
- package/icons/tech/mautic.js +0 -1
- package/icons/tech/maven.js +0 -1
- package/icons/tech/mdn.js +0 -1
- package/icons/tech/mdx.js +0 -1
- package/icons/tech/medium-icon.js +0 -1
- package/icons/tech/medium.js +0 -1
- package/icons/tech/medusa-icon.js +0 -1
- package/icons/tech/medusa.js +0 -1
- package/icons/tech/meilisearch.js +0 -1
- package/icons/tech/memcached.js +0 -1
- package/icons/tech/memgraph.js +0 -1
- package/icons/tech/mention.js +0 -1
- package/icons/tech/mercurial.js +0 -1
- package/icons/tech/mesos.js +0 -1
- package/icons/tech/messenger.js +0 -1
- package/icons/tech/meta-icon.js +0 -1
- package/icons/tech/meta.js +0 -1
- package/icons/tech/metabase.js +0 -1
- package/icons/tech/metamask-icon.js +0 -1
- package/icons/tech/metamask.js +0 -1
- package/icons/tech/meteor-icon.js +0 -1
- package/icons/tech/meteor-js.js +0 -1
- package/icons/tech/meteor.js +0 -1
- package/icons/tech/micro-icon.js +0 -1
- package/icons/tech/micro-python.js +0 -1
- package/icons/tech/micro.js +0 -1
- package/icons/tech/microcosm.js +0 -1
- package/icons/tech/micron-icon.js +0 -1
- package/icons/tech/micron.js +0 -1
- package/icons/tech/microsoft-azure.js +0 -1
- package/icons/tech/microsoft-edge.js +0 -1
- package/icons/tech/microsoft-icon.js +0 -1
- package/icons/tech/microsoft-onedrive.js +0 -1
- package/icons/tech/microsoft-power-bi.js +0 -1
- package/icons/tech/microsoft-sql-server.js +0 -1
- package/icons/tech/microsoft-teams.js +0 -1
- package/icons/tech/microsoft-windows-icon.js +0 -1
- package/icons/tech/microsoft-windows.js +0 -1
- package/icons/tech/microsoft.js +0 -1
- package/icons/tech/mida-icon.js +0 -1
- package/icons/tech/mida.js +0 -1
- package/icons/tech/middleman.js +0 -1
- package/icons/tech/midjourney.js +0 -1
- package/icons/tech/milligram.js +0 -1
- package/icons/tech/million-icon.js +0 -1
- package/icons/tech/million.js +0 -1
- package/icons/tech/milvus-icon.js +0 -1
- package/icons/tech/milvus.js +0 -1
- package/icons/tech/mindsdb-icon.js +0 -1
- package/icons/tech/mindsdb.js +0 -1
- package/icons/tech/minitab.js +0 -1
- package/icons/tech/mint-lang.js +0 -1
- package/icons/tech/mio.js +0 -1
- package/icons/tech/miro-icon.js +0 -1
- package/icons/tech/miro.js +0 -1
- package/icons/tech/mist.js +0 -1
- package/icons/tech/mistral-ai-icon.js +0 -1
- package/icons/tech/mistral-ai.js +0 -1
- package/icons/tech/mithril.js +0 -1
- package/icons/tech/mixmax.js +0 -1
- package/icons/tech/mixpanel.js +0 -1
- package/icons/tech/mlab.js +0 -1
- package/icons/tech/mob-x.js +0 -1
- package/icons/tech/mocha.js +0 -1
- package/icons/tech/mockflow-icon.js +0 -1
- package/icons/tech/mockflow.js +0 -1
- package/icons/tech/modernizr.js +0 -1
- package/icons/tech/modx-icon.js +0 -1
- package/icons/tech/modx.js +0 -1
- package/icons/tech/moleculer.js +0 -1
- package/icons/tech/momentjs.js +0 -1
- package/icons/tech/monday-icon.js +0 -1
- package/icons/tech/monday.js +0 -1
- package/icons/tech/monero.js +0 -1
- package/icons/tech/mongodb-icon.js +0 -1
- package/icons/tech/mongodb.js +0 -1
- package/icons/tech/mongoose-js.js +0 -1
- package/icons/tech/mono.js +0 -1
- package/icons/tech/moodle.js +0 -1
- package/icons/tech/moon.js +0 -1
- package/icons/tech/mootools.js +0 -1
- package/icons/tech/morpheus-icon.js +0 -1
- package/icons/tech/morpheus.js +0 -1
- package/icons/tech/mozilla.js +0 -1
- package/icons/tech/mparticle-icon.js +0 -1
- package/icons/tech/mparticle.js +0 -1
- package/icons/tech/mps-icon.js +0 -1
- package/icons/tech/mps.js +0 -1
- package/icons/tech/ms-dos.js +0 -1
- package/icons/tech/msw-icon.js +0 -1
- package/icons/tech/msw.js +0 -1
- package/icons/tech/multipass.js +0 -1
- package/icons/tech/mysql-icon.js +0 -1
- package/icons/tech/mysql.js +0 -1
- package/icons/tech/naiveui.js +0 -1
- package/icons/tech/namecheap.js +0 -1
- package/icons/tech/nano.js +0 -1
- package/icons/tech/nanonets.js +0 -1
- package/icons/tech/nasm.js +0 -1
- package/icons/tech/nativescript.js +0 -1
- package/icons/tech/nats-icon.js +0 -1
- package/icons/tech/nats.js +0 -1
- package/icons/tech/neat.js +0 -1
- package/icons/tech/neo4j.js +0 -1
- package/icons/tech/neon-icon.js +0 -1
- package/icons/tech/neon.js +0 -1
- package/icons/tech/neovim.js +0 -1
- package/icons/tech/nerog.js +0 -1
- package/icons/tech/nestjs.js +0 -1
- package/icons/tech/net-core.js +0 -1
- package/icons/tech/net.js +0 -1
- package/icons/tech/netbeans.js +0 -1
- package/icons/tech/netflix-icon.js +0 -1
- package/icons/tech/netflix.js +0 -1
- package/icons/tech/netlify-icon.js +0 -1
- package/icons/tech/netlify.js +0 -1
- package/icons/tech/network-x.js +0 -1
- package/icons/tech/neverinstall-icon.js +0 -1
- package/icons/tech/neverinstall.js +0 -1
- package/icons/tech/new-relic-icon.js +0 -1
- package/icons/tech/new-relic.js +0 -1
- package/icons/tech/new4j.js +0 -1
- package/icons/tech/nextjs-icon.js +0 -1
- package/icons/tech/nextjs.js +0 -1
- package/icons/tech/nginx.js +0 -1
- package/icons/tech/ngrok.js +0 -1
- package/icons/tech/nhibernate.js +0 -1
- package/icons/tech/nhost-icon.js +0 -1
- package/icons/tech/nhost.js +0 -1
- package/icons/tech/nightwatch.js +0 -1
- package/icons/tech/nim-lang.js +0 -1
- package/icons/tech/nim.js +0 -1
- package/icons/tech/nimble.js +0 -1
- package/icons/tech/nix.js +0 -1
- package/icons/tech/nocodb.js +0 -1
- package/icons/tech/nodal.js +0 -1
- package/icons/tech/node-sass.js +0 -1
- package/icons/tech/nodebots.js +0 -1
- package/icons/tech/nodejs-icon-alt.js +0 -1
- package/icons/tech/nodejs-icon.js +0 -1
- package/icons/tech/nodejs.js +0 -1
- package/icons/tech/nodemon.js +0 -1
- package/icons/tech/nodeos.js +0 -1
- package/icons/tech/nodewebkit.js +0 -1
- package/icons/tech/nomad-icon.js +0 -1
- package/icons/tech/nomad.js +0 -1
- package/icons/tech/notion-icon.js +0 -1
- package/icons/tech/notion.js +0 -1
- package/icons/tech/noysi.js +0 -1
- package/icons/tech/npm-icon.js +0 -1
- package/icons/tech/npm.js +0 -1
- package/icons/tech/nuclide.js +0 -1
- package/icons/tech/nuget.js +0 -1
- package/icons/tech/num-py.js +0 -1
- package/icons/tech/nuxt-icon.js +0 -1
- package/icons/tech/nuxt-js.js +0 -1
- package/icons/tech/nuxt.js +0 -1
- package/icons/tech/nvidia.js +0 -1
- package/icons/tech/nvm.js +0 -1
- package/icons/tech/nx.js +0 -1
- package/icons/tech/oauth.js +0 -1
- package/icons/tech/objective-c.js +0 -1
- package/icons/tech/observablehq.js +0 -1
- package/icons/tech/obsidian-icon.js +0 -1
- package/icons/tech/obsidian.js +0 -1
- package/icons/tech/ocaml.js +0 -1
- package/icons/tech/octodns.js +0 -1
- package/icons/tech/octopus-deploy.js +0 -1
- package/icons/tech/oh-my-zsh.js +0 -1
- package/icons/tech/okta-icon.js +0 -1
- package/icons/tech/okta.js +0 -1
- package/icons/tech/olark.js +0 -1
- package/icons/tech/onesignal.js +0 -1
- package/icons/tech/open-al.js +0 -1
- package/icons/tech/open-api.js +0 -1
- package/icons/tech/open-cl.js +0 -1
- package/icons/tech/open-cv.js +0 -1
- package/icons/tech/open-gl.js +0 -1
- package/icons/tech/open-graph.js +0 -1
- package/icons/tech/open-stack.js +0 -1
- package/icons/tech/open-suse.js +0 -1
- package/icons/tech/open-telemetry.js +0 -1
- package/icons/tech/open-zeppelin-icon.js +0 -1
- package/icons/tech/open-zeppelin.js +0 -1
- package/icons/tech/openai-icon.js +0 -1
- package/icons/tech/openai.js +0 -1
- package/icons/tech/openapi-icon.js +0 -1
- package/icons/tech/opencart.js +0 -1
- package/icons/tech/opencollective.js +0 -1
- package/icons/tech/openframeworks.js +0 -1
- package/icons/tech/openjs-foundation-icon.js +0 -1
- package/icons/tech/openjs-foundation.js +0 -1
- package/icons/tech/openlayers.js +0 -1
- package/icons/tech/opensearch-icon.js +0 -1
- package/icons/tech/opensearch.js +0 -1
- package/icons/tech/openshift.js +0 -1
- package/icons/tech/opensource.js +0 -1
- package/icons/tech/openstack-icon.js +0 -1
- package/icons/tech/opentelemetry-icon.js +0 -1
- package/icons/tech/opera.js +0 -1
- package/icons/tech/opsgenie.js +0 -1
- package/icons/tech/optimizely-icon.js +0 -1
- package/icons/tech/optimizely.js +0 -1
- package/icons/tech/oracle.js +0 -1
- package/icons/tech/oreilly.js +0 -1
- package/icons/tech/origami.js +0 -1
- package/icons/tech/origin.js +0 -1
- package/icons/tech/oshw.js +0 -1
- package/icons/tech/osquery.js +0 -1
- package/icons/tech/overloop-icon.js +0 -1
- package/icons/tech/overloop.js +0 -1
- package/icons/tech/p5js.js +0 -1
- package/icons/tech/packer.js +0 -1
- package/icons/tech/pagekit.js +0 -1
- package/icons/tech/pagekite.js +0 -1
- package/icons/tech/pagerduty-icon.js +0 -1
- package/icons/tech/pagerduty.js +0 -1
- package/icons/tech/panda.js +0 -1
- package/icons/tech/pandacss-icon.js +0 -1
- package/icons/tech/pandacss.js +0 -1
- package/icons/tech/pandas-icon.js +0 -1
- package/icons/tech/pandas.js +0 -1
- package/icons/tech/parcel-icon.js +0 -1
- package/icons/tech/parcel.js +0 -1
- package/icons/tech/parse.js +0 -1
- package/icons/tech/parsehub.js +0 -1
- package/icons/tech/partytown-icon.js +0 -1
- package/icons/tech/partytown.js +0 -1
- package/icons/tech/passbolt-icon.js +0 -1
- package/icons/tech/passbolt.js +0 -1
- package/icons/tech/passport.js +0 -1
- package/icons/tech/patreon.js +0 -1
- package/icons/tech/payload.js +0 -1
- package/icons/tech/paypal.js +0 -1
- package/icons/tech/peer5.js +0 -1
- package/icons/tech/pepperoni.js +0 -1
- package/icons/tech/percona.js +0 -1
- package/icons/tech/percy-icon.js +0 -1
- package/icons/tech/percy.js +0 -1
- package/icons/tech/perf-rocks.js +0 -1
- package/icons/tech/perl.js +0 -1
- package/icons/tech/perplexity-icon.js +0 -1
- package/icons/tech/perplexity.js +0 -1
- package/icons/tech/pf-sense.js +0 -1
- package/icons/tech/phalcon.js +0 -1
- package/icons/tech/phoenix-framework.js +0 -1
- package/icons/tech/phoenix.js +0 -1
- package/icons/tech/photon-engine.js +0 -1
- package/icons/tech/php-alt.js +0 -1
- package/icons/tech/php-storm.js +0 -1
- package/icons/tech/php.js +0 -1
- package/icons/tech/pinecone-icon.js +0 -1
- package/icons/tech/pinecone.js +0 -1
- package/icons/tech/pinia.js +0 -1
- package/icons/tech/pinterest.js +0 -1
- package/icons/tech/pipedream.js +0 -1
- package/icons/tech/pipedrive.js +0 -1
- package/icons/tech/pipefy.js +0 -1
- package/icons/tech/pivotal-tracker.js +0 -1
- package/icons/tech/pixijs.js +0 -1
- package/icons/tech/pkg.js +0 -1
- package/icons/tech/planetscale.js +0 -1
- package/icons/tech/planless-icon.js +0 -1
- package/icons/tech/planless.js +0 -1
- package/icons/tech/plasmic.js +0 -1
- package/icons/tech/plastic-scm.js +0 -1
- package/icons/tech/platformio.js +0 -1
- package/icons/tech/play.js +0 -1
- package/icons/tech/playwright.js +0 -1
- package/icons/tech/playwrite.js +0 -1
- package/icons/tech/ploty.js +0 -1
- package/icons/tech/pluralsight-icon.js +0 -1
- package/icons/tech/pluralsight.js +0 -1
- package/icons/tech/pm2-icon.js +0 -1
- package/icons/tech/pm2.js +0 -1
- package/icons/tech/pnpm.js +0 -1
- package/icons/tech/pocket-base.js +0 -1
- package/icons/tech/podman.js +0 -1
- package/icons/tech/poeditor.js +0 -1
- package/icons/tech/polygon.js +0 -1
- package/icons/tech/polymer.js +0 -1
- package/icons/tech/portainer.js +0 -1
- package/icons/tech/postcss.js +0 -1
- package/icons/tech/postgraphile.js +0 -1
- package/icons/tech/postgresql.js +0 -1
- package/icons/tech/posthog-icon.js +0 -1
- package/icons/tech/posthog.js +0 -1
- package/icons/tech/postman-icon.js +0 -1
- package/icons/tech/postman.js +0 -1
- package/icons/tech/pouchdb.js +0 -1
- package/icons/tech/powershell.js +0 -1
- package/icons/tech/preact.js +0 -1
- package/icons/tech/precursor.js +0 -1
- package/icons/tech/prerender-icon.js +0 -1
- package/icons/tech/prerender.js +0 -1
- package/icons/tech/prestashop-icon.js +0 -1
- package/icons/tech/prestashop.js +0 -1
- package/icons/tech/presto-icon.js +0 -1
- package/icons/tech/presto.js +0 -1
- package/icons/tech/prettier.js +0 -1
- package/icons/tech/prisma.js +0 -1
- package/icons/tech/prismic-icon.js +0 -1
- package/icons/tech/prismic.js +0 -1
- package/icons/tech/processing.js +0 -1
- package/icons/tech/processwire-icon.js +0 -1
- package/icons/tech/processwire.js +0 -1
- package/icons/tech/productboard-icon.js +0 -1
- package/icons/tech/productboard.js +0 -1
- package/icons/tech/producthunt.js +0 -1
- package/icons/tech/progress.js +0 -1
- package/icons/tech/prometheus.js +0 -1
- package/icons/tech/promises.js +0 -1
- package/icons/tech/proofy.js +0 -1
- package/icons/tech/protoio.js +0 -1
- package/icons/tech/protonet.js +0 -1
- package/icons/tech/protractor.js +0 -1
- package/icons/tech/prott.js +0 -1
- package/icons/tech/pug.js +0 -1
- package/icons/tech/pulumi-icon.js +0 -1
- package/icons/tech/pulumi.js +0 -1
- package/icons/tech/pumpkindb.js +0 -1
- package/icons/tech/puppet-icon.js +0 -1
- package/icons/tech/puppet.js +0 -1
- package/icons/tech/puppeteer.js +0 -1
- package/icons/tech/purescript-icon.js +0 -1
- package/icons/tech/purescript.js +0 -1
- package/icons/tech/pushbullet.js +0 -1
- package/icons/tech/pusher-icon.js +0 -1
- package/icons/tech/pusher.js +0 -1
- package/icons/tech/putty.js +0 -1
- package/icons/tech/pwa.js +0 -1
- package/icons/tech/pycharm.js +0 -1
- package/icons/tech/pypi.js +0 -1
- package/icons/tech/pyscript.js +0 -1
- package/icons/tech/pytest.js +0 -1
- package/icons/tech/python-poetry.js +0 -1
- package/icons/tech/python.js +0 -1
- package/icons/tech/pytorch-icon.js +0 -1
- package/icons/tech/pytorch.js +0 -1
- package/icons/tech/pyup.js +0 -1
- package/icons/tech/q.js +0 -1
- package/icons/tech/qdrant-icon.js +0 -1
- package/icons/tech/qdrant.js +0 -1
- package/icons/tech/qlik.js +0 -1
- package/icons/tech/qodana.js +0 -1
- package/icons/tech/qt.js +0 -1
- package/icons/tech/qualcomm.js +0 -1
- package/icons/tech/quarkus-icon.js +0 -1
- package/icons/tech/quarkus.js +0 -1
- package/icons/tech/quasar.js +0 -1
- package/icons/tech/quay.js +0 -1
- package/icons/tech/quobyte.js +0 -1
- package/icons/tech/quora.js +0 -1
- package/icons/tech/qwik-icon.js +0 -1
- package/icons/tech/qwik.js +0 -1
- package/icons/tech/r-lang.js +0 -1
- package/icons/tech/r.js +0 -1
- package/icons/tech/rabbitmq-icon.js +0 -1
- package/icons/tech/rabbitmq.js +0 -1
- package/icons/tech/rackspace-icon.js +0 -1
- package/icons/tech/rackspace.js +0 -1
- package/icons/tech/rails.js +0 -1
- package/icons/tech/ramda.js +0 -1
- package/icons/tech/raml.js +0 -1
- package/icons/tech/rancher-icon.js +0 -1
- package/icons/tech/rancher.js +0 -1
- package/icons/tech/raphael.js +0 -1
- package/icons/tech/raspberry-pi.js +0 -1
- package/icons/tech/rax.js +0 -1
- package/icons/tech/reach.js +0 -1
- package/icons/tech/react-bootstrap.js +0 -1
- package/icons/tech/react-query-icon.js +0 -1
- package/icons/tech/react-query.js +0 -1
- package/icons/tech/react-router.js +0 -1
- package/icons/tech/react-spring.js +0 -1
- package/icons/tech/react-styleguidist.js +0 -1
- package/icons/tech/react.js +0 -1
- package/icons/tech/reactivex.js +0 -1
- package/icons/tech/realm.js +0 -1
- package/icons/tech/reapp.js +0 -1
- package/icons/tech/reasonml-icon.js +0 -1
- package/icons/tech/reasonml.js +0 -1
- package/icons/tech/recaptcha.js +0 -1
- package/icons/tech/recoil-icon.js +0 -1
- package/icons/tech/recoil.js +0 -1
- package/icons/tech/red-cube-s-epic-compiler-thingy-programming-re-ct.js +0 -1
- package/icons/tech/reddit-icon.js +0 -1
- package/icons/tech/reddit.js +0 -1
- package/icons/tech/redhat-icon.js +0 -1
- package/icons/tech/redhat.js +0 -1
- package/icons/tech/redis.js +0 -1
- package/icons/tech/redsmin.js +0 -1
- package/icons/tech/redux-observable.js +0 -1
- package/icons/tech/redux-saga.js +0 -1
- package/icons/tech/redux.js +0 -1
- package/icons/tech/redwoodjs.js +0 -1
- package/icons/tech/reindex.js +0 -1
- package/icons/tech/relay.js +0 -1
- package/icons/tech/release.js +0 -1
- package/icons/tech/remix-icon.js +0 -1
- package/icons/tech/remix.js +0 -1
- package/icons/tech/ren-py.js +0 -1
- package/icons/tech/renovatebot.js +0 -1
- package/icons/tech/replay-icon.js +0 -1
- package/icons/tech/replay.js +0 -1
- package/icons/tech/replit-icon.js +0 -1
- package/icons/tech/replit.js +0 -1
- package/icons/tech/require.js +0 -1
- package/icons/tech/rescript-icon.js +0 -1
- package/icons/tech/rescript.js +0 -1
- package/icons/tech/rest-li.js +0 -1
- package/icons/tech/rethinkdb.js +0 -1
- package/icons/tech/retool-icon.js +0 -1
- package/icons/tech/retool.js +0 -1
- package/icons/tech/riak.js +0 -1
- package/icons/tech/rider.js +0 -1
- package/icons/tech/riot.js +0 -1
- package/icons/tech/risingwave-icon.js +0 -1
- package/icons/tech/risingwave.js +0 -1
- package/icons/tech/robot-operating-system-ros.js +0 -1
- package/icons/tech/rocket-chat-icon.js +0 -1
- package/icons/tech/rocket-chat.js +0 -1
- package/icons/tech/rocksdb.js +0 -1
- package/icons/tech/rocky-linux-icon.js +0 -1
- package/icons/tech/rocky-linux.js +0 -1
- package/icons/tech/rollbar-icon.js +0 -1
- package/icons/tech/rollbar.js +0 -1
- package/icons/tech/rollupjs.js +0 -1
- package/icons/tech/rome-icon.js +0 -1
- package/icons/tech/rome.js +0 -1
- package/icons/tech/ros.js +0 -1
- package/icons/tech/rsa.js +0 -1
- package/icons/tech/rsmq.js +0 -1
- package/icons/tech/rspec.js +0 -1
- package/icons/tech/rstudio.js +0 -1
- package/icons/tech/rubocop.js +0 -1
- package/icons/tech/ruby-mine.js +0 -1
- package/icons/tech/ruby-on-rails.js +0 -1
- package/icons/tech/ruby.js +0 -1
- package/icons/tech/rubygems.js +0 -1
- package/icons/tech/rum.js +0 -1
- package/icons/tech/runscope.js +0 -1
- package/icons/tech/rush-icon.js +0 -1
- package/icons/tech/rush.js +0 -1
- package/icons/tech/rust.js +0 -1
- package/icons/tech/rxdb.js +0 -1
- package/icons/tech/safari.js +0 -1
- package/icons/tech/sagui.js +0 -1
- package/icons/tech/sails.js +0 -1
- package/icons/tech/salesforce.js +0 -1
- package/icons/tech/sameroom.js +0 -1
- package/icons/tech/samsung.js +0 -1
- package/icons/tech/sanity.js +0 -1
- package/icons/tech/sap.js +0 -1
- package/icons/tech/sass-doc.js +0 -1
- package/icons/tech/sass.js +0 -1
- package/icons/tech/saucelabs.js +0 -1
- package/icons/tech/scala.js +0 -1
- package/icons/tech/scaledrone.js +0 -1
- package/icons/tech/scalingo.js +0 -1
- package/icons/tech/scribd-icon.js +0 -1
- package/icons/tech/scribd.js +0 -1
- package/icons/tech/sdl.js +0 -1
- package/icons/tech/seaborn-icon.js +0 -1
- package/icons/tech/seaborn.js +0 -1
- package/icons/tech/section-icon.js +0 -1
- package/icons/tech/section.js +0 -1
- package/icons/tech/segment-icon.js +0 -1
- package/icons/tech/segment.js +0 -1
- package/icons/tech/selenium.js +0 -1
- package/icons/tech/sema-software.js +0 -1
- package/icons/tech/semantic-release.js +0 -1
- package/icons/tech/semantic-ui.js +0 -1
- package/icons/tech/semaphoreci.js +0 -1
- package/icons/tech/sencha.js +0 -1
- package/icons/tech/sendgrid-icon.js +0 -1
- package/icons/tech/sendgrid.js +0 -1
- package/icons/tech/seneca.js +0 -1
- package/icons/tech/sensu-icon.js +0 -1
- package/icons/tech/sensu.js +0 -1
- package/icons/tech/sentry-icon.js +0 -1
- package/icons/tech/sentry.js +0 -1
- package/icons/tech/sequelize.js +0 -1
- package/icons/tech/serverless.js +0 -1
- package/icons/tech/sherlock-icon.js +0 -1
- package/icons/tech/sherlock.js +0 -1
- package/icons/tech/shields.js +0 -1
- package/icons/tech/shipit.js +0 -1
- package/icons/tech/shogun.js +0 -1
- package/icons/tech/shopify.js +0 -1
- package/icons/tech/shopware.js +0 -1
- package/icons/tech/shortcut-icon.js +0 -1
- package/icons/tech/shortcut.js +0 -1
- package/icons/tech/sidekiq-icon.js +0 -1
- package/icons/tech/sidekiq.js +0 -1
- package/icons/tech/signal.js +0 -1
- package/icons/tech/sigstore-icon.js +0 -1
- package/icons/tech/sigstore.js +0 -1
- package/icons/tech/sinatra.js +0 -1
- package/icons/tech/singlestore-icon.js +0 -1
- package/icons/tech/singlestore.js +0 -1
- package/icons/tech/sitepoint.js +0 -1
- package/icons/tech/sk-hynix.js +0 -1
- package/icons/tech/skaffolder.js +0 -1
- package/icons/tech/sketch.js +0 -1
- package/icons/tech/skylight.js +0 -1
- package/icons/tech/skype.js +0 -1
- package/icons/tech/slack-icon.js +0 -1
- package/icons/tech/slack.js +0 -1
- package/icons/tech/slides.js +0 -1
- package/icons/tech/slidev.js +0 -1
- package/icons/tech/slim.js +0 -1
- package/icons/tech/smartling.js +0 -1
- package/icons/tech/smashingmagazine.js +0 -1
- package/icons/tech/snap-svg.js +0 -1
- package/icons/tech/snaplet-icon.js +0 -1
- package/icons/tech/snaplet.js +0 -1
- package/icons/tech/snowflake-icon.js +0 -1
- package/icons/tech/snowflake.js +0 -1
- package/icons/tech/snowpack.js +0 -1
- package/icons/tech/snyk.js +0 -1
- package/icons/tech/socket-io.js +0 -1
- package/icons/tech/solarwinds.js +0 -1
- package/icons/tech/solid.js +0 -1
- package/icons/tech/solidity.js +0 -1
- package/icons/tech/solidjs-icon.js +0 -1
- package/icons/tech/solidjs.js +0 -1
- package/icons/tech/solr.js +0 -1
- package/icons/tech/sonarcloud-icon.js +0 -1
- package/icons/tech/sonarcloud.js +0 -1
- package/icons/tech/sonarlint-icon.js +0 -1
- package/icons/tech/sonarlint.js +0 -1
- package/icons/tech/sonarqube.js +0 -1
- package/icons/tech/soundcloud.js +0 -1
- package/icons/tech/sourcegraph.js +0 -1
- package/icons/tech/sourcetree.js +0 -1
- package/icons/tech/spark.js +0 -1
- package/icons/tech/sparkpost.js +0 -1
- package/icons/tech/speakerdeck.js +0 -1
- package/icons/tech/speedcurve.js +0 -1
- package/icons/tech/spidermonkey-icon.js +0 -1
- package/icons/tech/spidermonkey.js +0 -1
- package/icons/tech/spinnaker.js +0 -1
- package/icons/tech/splunk.js +0 -1
- package/icons/tech/spotify-icon.js +0 -1
- package/icons/tech/spotify.js +0 -1
- package/icons/tech/spree.js +0 -1
- package/icons/tech/spring-icon.js +0 -1
- package/icons/tech/spring.js +0 -1
- package/icons/tech/sql-developer.js +0 -1
- package/icons/tech/sqlalchemy.js +0 -1
- package/icons/tech/sqlite.js +0 -1
- package/icons/tech/square.js +0 -1
- package/icons/tech/squarespace.js +0 -1
- package/icons/tech/ssh.js +0 -1
- package/icons/tech/sst-icon.js +0 -1
- package/icons/tech/sst.js +0 -1
- package/icons/tech/stability-ai-icon.js +0 -1
- package/icons/tech/stability-ai.js +0 -1
- package/icons/tech/stackbit-icon.js +0 -1
- package/icons/tech/stackbit.js +0 -1
- package/icons/tech/stackblitz-icon.js +0 -1
- package/icons/tech/stackblitz.js +0 -1
- package/icons/tech/stackoverflow-icon.js +0 -1
- package/icons/tech/stackoverflow.js +0 -1
- package/icons/tech/stackshare.js +0 -1
- package/icons/tech/stata.js +0 -1
- package/icons/tech/stately-icon.js +0 -1
- package/icons/tech/stately.js +0 -1
- package/icons/tech/statuspage.js +0 -1
- package/icons/tech/stdlib-icon.js +0 -1
- package/icons/tech/stdlib.js +0 -1
- package/icons/tech/steam.js +0 -1
- package/icons/tech/stenciljs-icon.js +0 -1
- package/icons/tech/stenciljs.js +0 -1
- package/icons/tech/stetho.js +0 -1
- package/icons/tech/stickermule.js +0 -1
- package/icons/tech/stigg-icon.js +0 -1
- package/icons/tech/stigg.js +0 -1
- package/icons/tech/stimulus-icon.js +0 -1
- package/icons/tech/stimulus.js +0 -1
- package/icons/tech/stitch.js +0 -1
- package/icons/tech/stoplight.js +0 -1
- package/icons/tech/storyblocks-icon.js +0 -1
- package/icons/tech/storyblocks.js +0 -1
- package/icons/tech/storyblok-icon.js +0 -1
- package/icons/tech/storyblok.js +0 -1
- package/icons/tech/storybook-icon.js +0 -1
- package/icons/tech/storybook.js +0 -1
- package/icons/tech/strapi-icon.js +0 -1
- package/icons/tech/strapi.js +0 -1
- package/icons/tech/streamlit.js +0 -1
- package/icons/tech/strider.js +0 -1
- package/icons/tech/stripe.js +0 -1
- package/icons/tech/struts.js +0 -1
- package/icons/tech/styleci.js +0 -1
- package/icons/tech/stylefmt.js +0 -1
- package/icons/tech/stylelint.js +0 -1
- package/icons/tech/stylis.js +0 -1
- package/icons/tech/stylus.js +0 -1
- package/icons/tech/stytch.js +0 -1
- package/icons/tech/sublimetext-icon.js +0 -1
- package/icons/tech/sublimetext.js +0 -1
- package/icons/tech/subversion.js +0 -1
- package/icons/tech/sugarss.js +0 -1
- package/icons/tech/supabase-icon.js +0 -1
- package/icons/tech/supabase.js +0 -1
- package/icons/tech/supertokens-icon.js +0 -1
- package/icons/tech/supertokens.js +0 -1
- package/icons/tech/surge.js +0 -1
- package/icons/tech/surrealdb-icon.js +0 -1
- package/icons/tech/surrealdb.js +0 -1
- package/icons/tech/survicate-icon.js +0 -1
- package/icons/tech/survicate.js +0 -1
- package/icons/tech/suse.js +0 -1
- package/icons/tech/susy.js +0 -1
- package/icons/tech/svelte-icon.js +0 -1
- package/icons/tech/svelte-kit.js +0 -1
- package/icons/tech/svelte.js +0 -1
- package/icons/tech/svg.js +0 -1
- package/icons/tech/svgator.js +0 -1
- package/icons/tech/swagger.js +0 -1
- package/icons/tech/swc.js +0 -1
- package/icons/tech/swift.js +0 -1
- package/icons/tech/swiftype.js +0 -1
- package/icons/tech/swimm.js +0 -1
- package/icons/tech/swr.js +0 -1
- package/icons/tech/symfony.js +0 -1
- package/icons/tech/sysdig-icon.js +0 -1
- package/icons/tech/sysdig.js +0 -1
- package/icons/tech/t3.js +0 -1
- package/icons/tech/tableau-icon.js +0 -1
- package/icons/tech/tableau.js +0 -1
- package/icons/tech/taiga.js +0 -1
- package/icons/tech/tailwindcss-icon.js +0 -1
- package/icons/tech/tailwindcss.js +0 -1
- package/icons/tech/tapcart-icon.js +0 -1
- package/icons/tech/tapcart.js +0 -1
- package/icons/tech/taskade-icon.js +0 -1
- package/icons/tech/taskade.js +0 -1
- package/icons/tech/tastejs.js +0 -1
- package/icons/tech/tauri.js +0 -1
- package/icons/tech/tealium.js +0 -1
- package/icons/tech/teamcity.js +0 -1
- package/icons/tech/teamgrid.js +0 -1
- package/icons/tech/teamwork-icon.js +0 -1
- package/icons/tech/teamwork.js +0 -1
- package/icons/tech/telegram.js +0 -1
- package/icons/tech/tensorflow.js +0 -1
- package/icons/tech/terminal.js +0 -1
- package/icons/tech/terraform-icon.js +0 -1
- package/icons/tech/terraform.js +0 -1
- package/icons/tech/terser-icon.js +0 -1
- package/icons/tech/terser.js +0 -1
- package/icons/tech/testcafe.js +0 -1
- package/icons/tech/testing-library.js +0 -1
- package/icons/tech/testlodge.js +0 -1
- package/icons/tech/tex.js +0 -1
- package/icons/tech/the-algorithms.js +0 -1
- package/icons/tech/threejs.js +0 -1
- package/icons/tech/thymeleaf-icon.js +0 -1
- package/icons/tech/thymeleaf.js +0 -1
- package/icons/tech/tidal-icon.js +0 -1
- package/icons/tech/tidal.js +0 -1
- package/icons/tech/tiktok-icon.js +0 -1
- package/icons/tech/tiktok.js +0 -1
- package/icons/tech/titanium-sdk.js +0 -1
- package/icons/tech/tnw.js +0 -1
- package/icons/tech/todoist-icon.js +0 -1
- package/icons/tech/todoist.js +0 -1
- package/icons/tech/todomvc.js +0 -1
- package/icons/tech/tomcat.js +0 -1
- package/icons/tech/toml.js +0 -1
- package/icons/tech/tor-browser.js +0 -1
- package/icons/tech/tor.js +0 -1
- package/icons/tech/tortoise-git.js +0 -1
- package/icons/tech/tower.js +0 -1
- package/icons/tech/traackr.js +0 -1
- package/icons/tech/trac.js +0 -1
- package/icons/tech/traefik-mesh.js +0 -1
- package/icons/tech/traefik-proxy.js +0 -1
- package/icons/tech/travis-ci-monochrome.js +0 -1
- package/icons/tech/travis-ci.js +0 -1
- package/icons/tech/treasuredata-icon.js +0 -1
- package/icons/tech/treasuredata.js +0 -1
- package/icons/tech/treehouse-icon.js +0 -1
- package/icons/tech/treehouse.js +0 -1
- package/icons/tech/trello.js +0 -1
- package/icons/tech/trpc.js +0 -1
- package/icons/tech/truffle-icon.js +0 -1
- package/icons/tech/truffle.js +0 -1
- package/icons/tech/tsmc.js +0 -1
- package/icons/tech/tsnode.js +0 -1
- package/icons/tech/tsuru.js +0 -1
- package/icons/tech/tumblr-icon.js +0 -1
- package/icons/tech/tumblr.js +0 -1
- package/icons/tech/tunein.js +0 -1
- package/icons/tech/tuple.js +0 -1
- package/icons/tech/turbopack-icon.js +0 -1
- package/icons/tech/turbopack.js +0 -1
- package/icons/tech/turborepo-icon.js +0 -1
- package/icons/tech/turborepo.js +0 -1
- package/icons/tech/turret.js +0 -1
- package/icons/tech/twilio-icon.js +0 -1
- package/icons/tech/twilio.js +0 -1
- package/icons/tech/twitch.js +0 -1
- package/icons/tech/twitter.js +0 -1
- package/icons/tech/typeform-icon.js +0 -1
- package/icons/tech/typeform.js +0 -1
- package/icons/tech/typeorm.js +0 -1
- package/icons/tech/typescript-icon-round.js +0 -1
- package/icons/tech/typescript-icon.js +0 -1
- package/icons/tech/typescript.js +0 -1
- package/icons/tech/typesense-icon.js +0 -1
- package/icons/tech/typesense.js +0 -1
- package/icons/tech/typo3-icon.js +0 -1
- package/icons/tech/typo3.js +0 -1
- package/icons/tech/ubuntu.js +0 -1
- package/icons/tech/udacity-icon.js +0 -1
- package/icons/tech/udacity.js +0 -1
- package/icons/tech/udemy-icon.js +0 -1
- package/icons/tech/udemy.js +0 -1
- package/icons/tech/uikit.js +0 -1
- package/icons/tech/uml.js +0 -1
- package/icons/tech/umu.js +0 -1
- package/icons/tech/unbounce-icon.js +0 -1
- package/icons/tech/unbounce.js +0 -1
- package/icons/tech/undertow.js +0 -1
- package/icons/tech/unionpay.js +0 -1
- package/icons/tech/unitjs.js +0 -1
- package/icons/tech/unito-icon.js +0 -1
- package/icons/tech/unito.js +0 -1
- package/icons/tech/unity.js +0 -1
- package/icons/tech/unix.js +0 -1
- package/icons/tech/unjs.js +0 -1
- package/icons/tech/unocss.js +0 -1
- package/icons/tech/unrealengine-icon.js +0 -1
- package/icons/tech/unrealengine.js +0 -1
- package/icons/tech/upcase.js +0 -1
- package/icons/tech/upstash-icon.js +0 -1
- package/icons/tech/upstash.js +0 -1
- package/icons/tech/upwork.js +0 -1
- package/icons/tech/user-testing-icon.js +0 -1
- package/icons/tech/user-testing.js +0 -1
- package/icons/tech/uservoice-icon.js +0 -1
- package/icons/tech/uservoice.js +0 -1
- package/icons/tech/uwsgi.js +0 -1
- package/icons/tech/v8-ignition.js +0 -1
- package/icons/tech/v8-turbofan.js +0 -1
- package/icons/tech/v8.js +0 -1
- package/icons/tech/vaadin.js +0 -1
- package/icons/tech/vaddy.js +0 -1
- package/icons/tech/vagrant-icon.js +0 -1
- package/icons/tech/vagrant.js +0 -1
- package/icons/tech/vala.js +0 -1
- package/icons/tech/vault-icon.js +0 -1
- package/icons/tech/vault.js +0 -1
- package/icons/tech/vector.js +0 -1
- package/icons/tech/vercel-icon.js +0 -1
- package/icons/tech/vercel.js +0 -1
- package/icons/tech/verdaccio-icon.js +0 -1
- package/icons/tech/verdaccio.js +0 -1
- package/icons/tech/vernemq.js +0 -1
- package/icons/tech/veutify.js +0 -1
- package/icons/tech/vim.js +0 -1
- package/icons/tech/vimeo-icon.js +0 -1
- package/icons/tech/vimeo.js +0 -1
- package/icons/tech/visa.js +0 -1
- package/icons/tech/visaelectron.js +0 -1
- package/icons/tech/visual-studio-code.js +0 -1
- package/icons/tech/visual-studio.js +0 -1
- package/icons/tech/vite.js +0 -1
- package/icons/tech/vitejs.js +0 -1
- package/icons/tech/vitess.js +0 -1
- package/icons/tech/vitest.js +0 -1
- package/icons/tech/vivaldi-icon.js +0 -1
- package/icons/tech/vivaldi.js +0 -1
- package/icons/tech/vlang.js +0 -1
- package/icons/tech/vmware.js +0 -1
- package/icons/tech/void.js +0 -1
- package/icons/tech/volar.js +0 -1
- package/icons/tech/vorejs.js +0 -1
- package/icons/tech/vscode.js +0 -1
- package/icons/tech/vsphere.js +0 -1
- package/icons/tech/vue-storefront.js +0 -1
- package/icons/tech/vue.js +0 -1
- package/icons/tech/vuetifyjs.js +0 -1
- package/icons/tech/vueuse.js +0 -1
- package/icons/tech/vulkan.js +0 -1
- package/icons/tech/vultr-icon.js +0 -1
- package/icons/tech/vultr.js +0 -1
- package/icons/tech/vwo.js +0 -1
- package/icons/tech/vyper.js +0 -1
- package/icons/tech/w3c.js +0 -1
- package/icons/tech/waffle-icon.js +0 -1
- package/icons/tech/waffle.js +0 -1
- package/icons/tech/wagtail.js +0 -1
- package/icons/tech/wakatime.js +0 -1
- package/icons/tech/walkme.js +0 -1
- package/icons/tech/watchman.js +0 -1
- package/icons/tech/waypoint-icon.js +0 -1
- package/icons/tech/waypoint.js +0 -1
- package/icons/tech/wayscript-icon.js +0 -1
- package/icons/tech/wayscript.js +0 -1
- package/icons/tech/wearos.js +0 -1
- package/icons/tech/weave.js +0 -1
- package/icons/tech/web-dev-icon.js +0 -1
- package/icons/tech/web-dev.js +0 -1
- package/icons/tech/web3js.js +0 -1
- package/icons/tech/webassembly.js +0 -1
- package/icons/tech/webcomponents.js +0 -1
- package/icons/tech/webdriverio.js +0 -1
- package/icons/tech/webflow.js +0 -1
- package/icons/tech/webgpu.js +0 -1
- package/icons/tech/webhint-icon.js +0 -1
- package/icons/tech/webhint.js +0 -1
- package/icons/tech/webhooks.js +0 -1
- package/icons/tech/webix-icon.js +0 -1
- package/icons/tech/webix.js +0 -1
- package/icons/tech/webkit.js +0 -1
- package/icons/tech/weblate.js +0 -1
- package/icons/tech/webmin.js +0 -1
- package/icons/tech/webpack.js +0 -1
- package/icons/tech/webplatform.js +0 -1
- package/icons/tech/webrtc.js +0 -1
- package/icons/tech/websocket.js +0 -1
- package/icons/tech/webstorm.js +0 -1
- package/icons/tech/webtorrent.js +0 -1
- package/icons/tech/weebly.js +0 -1
- package/icons/tech/whalar-icon.js +0 -1
- package/icons/tech/whalar.js +0 -1
- package/icons/tech/whatsapp-icon.js +0 -1
- package/icons/tech/whatsapp-monochrome-icon.js +0 -1
- package/icons/tech/whatsapp.js +0 -1
- package/icons/tech/whatwg.js +0 -1
- package/icons/tech/wicket-icon.js +0 -1
- package/icons/tech/wicket.js +0 -1
- package/icons/tech/wifi.js +0 -1
- package/icons/tech/wildfly.js +0 -1
- package/icons/tech/windi-css.js +0 -1
- package/icons/tech/windows11.js +0 -1
- package/icons/tech/windows8.js +0 -1
- package/icons/tech/winglang-icon.js +0 -1
- package/icons/tech/winglang.js +0 -1
- package/icons/tech/wire.js +0 -1
- package/icons/tech/wix.js +0 -1
- package/icons/tech/wmr.js +0 -1
- package/icons/tech/woo-commerce.js +0 -1
- package/icons/tech/woocommerce-icon.js +0 -1
- package/icons/tech/woopra.js +0 -1
- package/icons/tech/wordpress-icon-alt.js +0 -1
- package/icons/tech/wordpress-icon.js +0 -1
- package/icons/tech/wordpress.js +0 -1
- package/icons/tech/workboard.js +0 -1
- package/icons/tech/workos-icon.js +0 -1
- package/icons/tech/workos.js +0 -1
- package/icons/tech/workplace-icon.js +0 -1
- package/icons/tech/workplace.js +0 -1
- package/icons/tech/wpengine.js +0 -1
- package/icons/tech/wufoo.js +0 -1
- package/icons/tech/x.js +0 -1
- package/icons/tech/xamarin.js +0 -1
- package/icons/tech/xampp.js +0 -1
- package/icons/tech/xata-icon.js +0 -1
- package/icons/tech/xata.js +0 -1
- package/icons/tech/xcart.js +0 -1
- package/icons/tech/xcode.js +0 -1
- package/icons/tech/xero.js +0 -1
- package/icons/tech/xml.js +0 -1
- package/icons/tech/xray-for-jira.js +0 -1
- package/icons/tech/xstate.js +0 -1
- package/icons/tech/xtend.js +0 -1
- package/icons/tech/xwiki-icon.js +0 -1
- package/icons/tech/xwiki.js +0 -1
- package/icons/tech/yahoo.js +0 -1
- package/icons/tech/yaml.js +0 -1
- package/icons/tech/yammer.js +0 -1
- package/icons/tech/yandex-ru.js +0 -1
- package/icons/tech/yarn.js +0 -1
- package/icons/tech/ycombinator.js +0 -1
- package/icons/tech/yeoman.js +0 -1
- package/icons/tech/yii-framework.js +0 -1
- package/icons/tech/yii.js +0 -1
- package/icons/tech/youtrack.js +0 -1
- package/icons/tech/youtube-icon.js +0 -1
- package/icons/tech/youtube.js +0 -1
- package/icons/tech/yugabyte-icon.js +0 -1
- package/icons/tech/yugabyte.js +0 -1
- package/icons/tech/yuno-host.js +0 -1
- package/icons/tech/zabbix.js +0 -1
- package/icons/tech/zapier.js +0 -1
- package/icons/tech/zend-framework.js +0 -1
- package/icons/tech/zendesk-icon.js +0 -1
- package/icons/tech/zendesk.js +0 -1
- package/icons/tech/zenhub-icon.js +0 -1
- package/icons/tech/zenhub.js +0 -1
- package/icons/tech/zeplin.js +0 -1
- package/icons/tech/zeroheight-icon.js +0 -1
- package/icons/tech/zeroheight.js +0 -1
- package/icons/tech/zig.js +0 -1
- package/icons/tech/zod.js +0 -1
- package/icons/tech/zoho.js +0 -1
- package/icons/tech/zoom-icon.js +0 -1
- package/icons/tech/zoom.js +0 -1
- package/icons/tech/zorin-os.js +0 -1
- package/icons/tech/zsh.js +0 -1
- package/icons/tech/zube.js +0 -1
- package/icons/tech/zulip-icon.js +0 -1
- package/icons/tech/zulip.js +0 -1
- package/icons/tech/zwave.js +0 -1
|
@@ -1,4069 +0,0 @@
|
|
|
1
|
-
import * as _likec4_core from '@likec4/core';
|
|
2
|
-
import { LikeC4Model, ElementModel, RelationshipModel, DeploymentRelationModel, LikeC4ViewModel, DeploymentElementModel } from '@likec4/core/model';
|
|
3
|
-
import { aux, ProjectId, LikeC4ProjectStylesConfig, LikeC4ProjectTheme, ThemeColorValues as ThemeColorValues$1 } from '@likec4/core/types';
|
|
4
|
-
import { SimplifyDeep } from 'type-fest';
|
|
5
|
-
import { ElementColorValues, RelationshipColorValues, ThemeColorValues, ColorLiteral } from '@likec4/core/styles';
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* Uniform Resource Identifier (URI) http://tools.ietf.org/html/rfc3986.
|
|
9
|
-
* This class is a simple parser which creates the basic component parts
|
|
10
|
-
* (http://tools.ietf.org/html/rfc3986#section-3) with minimal validation
|
|
11
|
-
* and encoding.
|
|
12
|
-
*
|
|
13
|
-
* ```txt
|
|
14
|
-
* foo://example.com:8042/over/there?name=ferret#nose
|
|
15
|
-
* \_/ \______________/\_________/ \_________/ \__/
|
|
16
|
-
* | | | | |
|
|
17
|
-
* scheme authority path query fragment
|
|
18
|
-
* | _____________________|__
|
|
19
|
-
* / \ / \
|
|
20
|
-
* urn:example:animal:ferret:nose
|
|
21
|
-
* ```
|
|
22
|
-
*/
|
|
23
|
-
declare class URI implements UriComponents {
|
|
24
|
-
static isUri(thing: any): thing is URI;
|
|
25
|
-
/**
|
|
26
|
-
* scheme is the 'http' part of 'http://www.example.com/some/path?query#fragment'.
|
|
27
|
-
* The part before the first colon.
|
|
28
|
-
*/
|
|
29
|
-
readonly scheme: string;
|
|
30
|
-
/**
|
|
31
|
-
* authority is the 'www.example.com' part of 'http://www.example.com/some/path?query#fragment'.
|
|
32
|
-
* The part between the first double slashes and the next slash.
|
|
33
|
-
*/
|
|
34
|
-
readonly authority: string;
|
|
35
|
-
/**
|
|
36
|
-
* path is the '/some/path' part of 'http://www.example.com/some/path?query#fragment'.
|
|
37
|
-
*/
|
|
38
|
-
readonly path: string;
|
|
39
|
-
/**
|
|
40
|
-
* query is the 'query' part of 'http://www.example.com/some/path?query#fragment'.
|
|
41
|
-
*/
|
|
42
|
-
readonly query: string;
|
|
43
|
-
/**
|
|
44
|
-
* fragment is the 'fragment' part of 'http://www.example.com/some/path?query#fragment'.
|
|
45
|
-
*/
|
|
46
|
-
readonly fragment: string;
|
|
47
|
-
/**
|
|
48
|
-
* @internal
|
|
49
|
-
*/
|
|
50
|
-
protected constructor(scheme: string, authority?: string, path?: string, query?: string, fragment?: string, _strict?: boolean);
|
|
51
|
-
/**
|
|
52
|
-
* @internal
|
|
53
|
-
*/
|
|
54
|
-
protected constructor(components: UriComponents);
|
|
55
|
-
/**
|
|
56
|
-
* Returns a string representing the corresponding file system path of this URI.
|
|
57
|
-
* Will handle UNC paths, normalizes windows drive letters to lower-case, and uses the
|
|
58
|
-
* platform specific path separator.
|
|
59
|
-
*
|
|
60
|
-
* * Will *not* validate the path for invalid characters and semantics.
|
|
61
|
-
* * Will *not* look at the scheme of this URI.
|
|
62
|
-
* * The result shall *not* be used for display purposes but for accessing a file on disk.
|
|
63
|
-
*
|
|
64
|
-
*
|
|
65
|
-
* The *difference* to `URI#path` is the use of the platform specific separator and the handling
|
|
66
|
-
* of UNC paths. See the below sample of a file-uri with an authority (UNC path).
|
|
67
|
-
*
|
|
68
|
-
* ```ts
|
|
69
|
-
const u = URI.parse('file://server/c$/folder/file.txt')
|
|
70
|
-
u.authority === 'server'
|
|
71
|
-
u.path === '/shares/c$/file.txt'
|
|
72
|
-
u.fsPath === '\\server\c$\folder\file.txt'
|
|
73
|
-
```
|
|
74
|
-
*
|
|
75
|
-
* Using `URI#path` to read a file (using fs-apis) would not be enough because parts of the path,
|
|
76
|
-
* namely the server name, would be missing. Therefore `URI#fsPath` exists - it's sugar to ease working
|
|
77
|
-
* with URIs that represent files on disk (`file` scheme).
|
|
78
|
-
*/
|
|
79
|
-
get fsPath(): string;
|
|
80
|
-
with(change: {
|
|
81
|
-
scheme?: string;
|
|
82
|
-
authority?: string | null;
|
|
83
|
-
path?: string | null;
|
|
84
|
-
query?: string | null;
|
|
85
|
-
fragment?: string | null;
|
|
86
|
-
}): URI;
|
|
87
|
-
/**
|
|
88
|
-
* Creates a new URI from a string, e.g. `http://www.example.com/some/path`,
|
|
89
|
-
* `file:///usr/home`, or `scheme:with/path`.
|
|
90
|
-
*
|
|
91
|
-
* @param value A string which represents an URI (see `URI#toString`).
|
|
92
|
-
*/
|
|
93
|
-
static parse(value: string, _strict?: boolean): URI;
|
|
94
|
-
/**
|
|
95
|
-
* Creates a new URI from a file system path, e.g. `c:\my\files`,
|
|
96
|
-
* `/usr/home`, or `\\server\share\some\path`.
|
|
97
|
-
*
|
|
98
|
-
* The *difference* between `URI#parse` and `URI#file` is that the latter treats the argument
|
|
99
|
-
* as path, not as stringified-uri. E.g. `URI.file(path)` is **not the same as**
|
|
100
|
-
* `URI.parse('file://' + path)` because the path might contain characters that are
|
|
101
|
-
* interpreted (# and ?). See the following sample:
|
|
102
|
-
* ```ts
|
|
103
|
-
const good = URI.file('/coding/c#/project1');
|
|
104
|
-
good.scheme === 'file';
|
|
105
|
-
good.path === '/coding/c#/project1';
|
|
106
|
-
good.fragment === '';
|
|
107
|
-
const bad = URI.parse('file://' + '/coding/c#/project1');
|
|
108
|
-
bad.scheme === 'file';
|
|
109
|
-
bad.path === '/coding/c'; // path is now broken
|
|
110
|
-
bad.fragment === '/project1';
|
|
111
|
-
```
|
|
112
|
-
*
|
|
113
|
-
* @param path A file system path (see `URI#fsPath`)
|
|
114
|
-
*/
|
|
115
|
-
static file(path: string): URI;
|
|
116
|
-
static from(components: {
|
|
117
|
-
scheme: string;
|
|
118
|
-
authority?: string;
|
|
119
|
-
path?: string;
|
|
120
|
-
query?: string;
|
|
121
|
-
fragment?: string;
|
|
122
|
-
}): URI;
|
|
123
|
-
/**
|
|
124
|
-
* Creates a string representation for this URI. It's guaranteed that calling
|
|
125
|
-
* `URI.parse` with the result of this function creates an URI which is equal
|
|
126
|
-
* to this URI.
|
|
127
|
-
*
|
|
128
|
-
* * The result shall *not* be used for display purposes but for externalization or transport.
|
|
129
|
-
* * The result will be encoded using the percentage encoding and encoding happens mostly
|
|
130
|
-
* ignore the scheme-specific encoding rules.
|
|
131
|
-
*
|
|
132
|
-
* @param skipEncoding Do not encode the result, default is `false`
|
|
133
|
-
*/
|
|
134
|
-
toString(skipEncoding?: boolean): string;
|
|
135
|
-
toJSON(): UriComponents;
|
|
136
|
-
static revive(data: UriComponents | URI): URI;
|
|
137
|
-
static revive(data: UriComponents | URI | undefined): URI | undefined;
|
|
138
|
-
static revive(data: UriComponents | URI | null): URI | null;
|
|
139
|
-
static revive(data: UriComponents | URI | undefined | null): URI | undefined | null;
|
|
140
|
-
}
|
|
141
|
-
interface UriComponents {
|
|
142
|
-
scheme: string;
|
|
143
|
-
authority: string;
|
|
144
|
-
path: string;
|
|
145
|
-
query: string;
|
|
146
|
-
fragment: string;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
/** The Standard Schema interface. */
|
|
150
|
-
interface StandardSchemaV1<Input = unknown, Output = Input> {
|
|
151
|
-
/** The Standard Schema properties. */
|
|
152
|
-
readonly "~standard": StandardSchemaV1.Props<Input, Output>;
|
|
153
|
-
}
|
|
154
|
-
declare namespace StandardSchemaV1 {
|
|
155
|
-
/** The Standard Schema properties interface. */
|
|
156
|
-
interface Props<Input = unknown, Output = Input> {
|
|
157
|
-
/** The version number of the standard. */
|
|
158
|
-
readonly version: 1;
|
|
159
|
-
/** The vendor name of the schema library. */
|
|
160
|
-
readonly vendor: string;
|
|
161
|
-
/** Validates unknown input values. */
|
|
162
|
-
readonly validate: (value: unknown) => Result<Output> | Promise<Result<Output>>;
|
|
163
|
-
/** Inferred types associated with the schema. */
|
|
164
|
-
readonly types?: Types<Input, Output> | undefined;
|
|
165
|
-
}
|
|
166
|
-
/** The result interface of the validate function. */
|
|
167
|
-
type Result<Output> = SuccessResult<Output> | FailureResult;
|
|
168
|
-
/** The result interface if validation succeeds. */
|
|
169
|
-
interface SuccessResult<Output> {
|
|
170
|
-
/** The typed output value. */
|
|
171
|
-
readonly value: Output;
|
|
172
|
-
/** The non-existent issues. */
|
|
173
|
-
readonly issues?: undefined;
|
|
174
|
-
}
|
|
175
|
-
/** The result interface if validation fails. */
|
|
176
|
-
interface FailureResult {
|
|
177
|
-
/** The issues of failed validation. */
|
|
178
|
-
readonly issues: ReadonlyArray<Issue>;
|
|
179
|
-
}
|
|
180
|
-
/** The issue interface of the failure output. */
|
|
181
|
-
interface Issue {
|
|
182
|
-
/** The error message of the issue. */
|
|
183
|
-
readonly message: string;
|
|
184
|
-
/** The path of the issue, if any. */
|
|
185
|
-
readonly path?: ReadonlyArray<PropertyKey | PathSegment> | undefined;
|
|
186
|
-
}
|
|
187
|
-
/** The path segment interface of the issue. */
|
|
188
|
-
interface PathSegment {
|
|
189
|
-
/** The key representing a path segment. */
|
|
190
|
-
readonly key: PropertyKey;
|
|
191
|
-
}
|
|
192
|
-
/** The Standard Schema types interface. */
|
|
193
|
-
interface Types<Input = unknown, Output = Input> {
|
|
194
|
-
/** The input type of the schema. */
|
|
195
|
-
readonly input: Input;
|
|
196
|
-
/** The output type of the schema. */
|
|
197
|
-
readonly output: Output;
|
|
198
|
-
}
|
|
199
|
-
/** Infers the input type of a Standard Schema. */
|
|
200
|
-
type InferInput<Schema extends StandardSchemaV1> = NonNullable<Schema["~standard"]["types"]>["input"];
|
|
201
|
-
/** Infers the output type of a Standard Schema. */
|
|
202
|
-
type InferOutput<Schema extends StandardSchemaV1> = NonNullable<Schema["~standard"]["types"]>["output"];
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
type JWTAlgorithm = "HS256" | "HS384" | "HS512" | "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "PS256" | "PS384" | "PS512" | "EdDSA" | (string & {});
|
|
206
|
-
type IsAny<T> = 0 extends 1 & T ? true : false;
|
|
207
|
-
type Omit$1<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
|
|
208
|
-
type MakePartial<T, K extends keyof T> = Omit$1<T, K> & InexactPartial<Pick<T, K>>;
|
|
209
|
-
type NoUndefined<T> = T extends undefined ? never : T;
|
|
210
|
-
type LoosePartial<T extends object> = InexactPartial<T> & {
|
|
211
|
-
[k: string]: unknown;
|
|
212
|
-
};
|
|
213
|
-
type Mask<Keys extends PropertyKey> = {
|
|
214
|
-
[K in Keys]?: true;
|
|
215
|
-
};
|
|
216
|
-
type InexactPartial<T> = {
|
|
217
|
-
[P in keyof T]?: T[P] | undefined;
|
|
218
|
-
};
|
|
219
|
-
type BuiltIn = (((...args: any[]) => any) | (new (...args: any[]) => any)) | {
|
|
220
|
-
readonly [Symbol.toStringTag]: string;
|
|
221
|
-
} | Date | Error | Generator | Promise<unknown> | RegExp;
|
|
222
|
-
type MakeReadonly<T> = T extends Map<infer K, infer V> ? ReadonlyMap<K, V> : T extends Set<infer V> ? ReadonlySet<V> : T extends [infer Head, ...infer Tail] ? readonly [Head, ...Tail] : T extends Array<infer V> ? ReadonlyArray<V> : T extends BuiltIn ? T : Readonly<T>;
|
|
223
|
-
type SomeObject = Record<PropertyKey, any>;
|
|
224
|
-
type Identity<T> = T;
|
|
225
|
-
type Flatten<T> = Identity<{
|
|
226
|
-
[k in keyof T]: T[k];
|
|
227
|
-
}>;
|
|
228
|
-
type Prettify<T> = {
|
|
229
|
-
[K in keyof T]: T[K];
|
|
230
|
-
} & {};
|
|
231
|
-
type Extend<A extends SomeObject, B extends SomeObject> = Flatten<keyof A & keyof B extends never ? A & B : {
|
|
232
|
-
[K in keyof A as K extends keyof B ? never : K]: A[K];
|
|
233
|
-
} & {
|
|
234
|
-
[K in keyof B]: B[K];
|
|
235
|
-
}>;
|
|
236
|
-
type AnyFunc = (...args: any[]) => any;
|
|
237
|
-
type MaybeAsync<T> = T | Promise<T>;
|
|
238
|
-
type EnumValue = string | number;
|
|
239
|
-
type EnumLike = Readonly<Record<string, EnumValue>>;
|
|
240
|
-
type ToEnum<T extends EnumValue> = Flatten<{
|
|
241
|
-
[k in T]: k;
|
|
242
|
-
}>;
|
|
243
|
-
type Literal = string | number | bigint | boolean | null | undefined;
|
|
244
|
-
type Primitive = string | number | symbol | bigint | boolean | null | undefined;
|
|
245
|
-
type HasLength = {
|
|
246
|
-
length: number;
|
|
247
|
-
};
|
|
248
|
-
type Numeric = number | bigint | Date;
|
|
249
|
-
type PropValues = Record<string, Set<Primitive>>;
|
|
250
|
-
type PrimitiveSet = Set<Primitive>;
|
|
251
|
-
type EmptyToNever<T> = keyof T extends never ? never : T;
|
|
252
|
-
declare abstract class Class {
|
|
253
|
-
constructor(..._args: any[]);
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
declare const version: {
|
|
257
|
-
readonly major: 4;
|
|
258
|
-
readonly minor: 1;
|
|
259
|
-
readonly patch: number;
|
|
260
|
-
};
|
|
261
|
-
|
|
262
|
-
interface ParseContext<T extends $ZodIssueBase = never> {
|
|
263
|
-
/** Customize error messages. */
|
|
264
|
-
readonly error?: $ZodErrorMap<T>;
|
|
265
|
-
/** Include the `input` field in issue objects. Default `false`. */
|
|
266
|
-
readonly reportInput?: boolean;
|
|
267
|
-
/** Skip eval-based fast path. Default `false`. */
|
|
268
|
-
readonly jitless?: boolean;
|
|
269
|
-
}
|
|
270
|
-
/** @internal */
|
|
271
|
-
interface ParseContextInternal<T extends $ZodIssueBase = never> extends ParseContext<T> {
|
|
272
|
-
readonly async?: boolean | undefined;
|
|
273
|
-
readonly direction?: "forward" | "backward";
|
|
274
|
-
readonly skipChecks?: boolean;
|
|
275
|
-
}
|
|
276
|
-
interface ParsePayload<T = unknown> {
|
|
277
|
-
value: T;
|
|
278
|
-
issues: $ZodRawIssue[];
|
|
279
|
-
/** A may to mark a whole payload as aborted. Used in codecs/pipes. */
|
|
280
|
-
aborted?: boolean;
|
|
281
|
-
}
|
|
282
|
-
type CheckFn<T> = (input: ParsePayload<T>) => MaybeAsync<void>;
|
|
283
|
-
interface $ZodTypeDef {
|
|
284
|
-
type: "string" | "number" | "int" | "boolean" | "bigint" | "symbol" | "null" | "undefined" | "void" | "never" | "any" | "unknown" | "date" | "object" | "record" | "file" | "array" | "tuple" | "union" | "intersection" | "map" | "set" | "enum" | "literal" | "nullable" | "optional" | "nonoptional" | "success" | "transform" | "default" | "prefault" | "catch" | "nan" | "pipe" | "readonly" | "template_literal" | "promise" | "lazy" | "function" | "custom";
|
|
285
|
-
error?: $ZodErrorMap<never> | undefined;
|
|
286
|
-
checks?: $ZodCheck<never>[];
|
|
287
|
-
}
|
|
288
|
-
interface _$ZodTypeInternals {
|
|
289
|
-
/** The `@zod/core` version of this schema */
|
|
290
|
-
version: typeof version;
|
|
291
|
-
/** Schema definition. */
|
|
292
|
-
def: $ZodTypeDef;
|
|
293
|
-
/** @internal Randomly generated ID for this schema. */
|
|
294
|
-
/** @internal List of deferred initializers. */
|
|
295
|
-
deferred: AnyFunc[] | undefined;
|
|
296
|
-
/** @internal Parses input and runs all checks (refinements). */
|
|
297
|
-
run(payload: ParsePayload<any>, ctx: ParseContextInternal): MaybeAsync<ParsePayload>;
|
|
298
|
-
/** @internal Parses input, doesn't run checks. */
|
|
299
|
-
parse(payload: ParsePayload<any>, ctx: ParseContextInternal): MaybeAsync<ParsePayload>;
|
|
300
|
-
/** @internal Stores identifiers for the set of traits implemented by this schema. */
|
|
301
|
-
traits: Set<string>;
|
|
302
|
-
/** @internal Indicates that a schema output type should be considered optional inside objects.
|
|
303
|
-
* @default Required
|
|
304
|
-
*/
|
|
305
|
-
/** @internal */
|
|
306
|
-
optin?: "optional" | undefined;
|
|
307
|
-
/** @internal */
|
|
308
|
-
optout?: "optional" | undefined;
|
|
309
|
-
/** @internal The set of literal values that will pass validation. Must be an exhaustive set. Used to determine optionality in z.record().
|
|
310
|
-
*
|
|
311
|
-
* Defined on: enum, const, literal, null, undefined
|
|
312
|
-
* Passthrough: optional, nullable, branded, default, catch, pipe
|
|
313
|
-
* Todo: unions?
|
|
314
|
-
*/
|
|
315
|
-
values?: PrimitiveSet | undefined;
|
|
316
|
-
/** Default value bubbled up from */
|
|
317
|
-
/** @internal A set of literal discriminators used for the fast path in discriminated unions. */
|
|
318
|
-
propValues?: PropValues | undefined;
|
|
319
|
-
/** @internal This flag indicates that a schema validation can be represented with a regular expression. Used to determine allowable schemas in z.templateLiteral(). */
|
|
320
|
-
pattern: RegExp | undefined;
|
|
321
|
-
/** @internal The constructor function of this schema. */
|
|
322
|
-
constr: new (def: any) => $ZodType;
|
|
323
|
-
/** @internal A catchall object for bag metadata related to this schema. Commonly modified by checks using `onattach`. */
|
|
324
|
-
bag: Record<string, unknown>;
|
|
325
|
-
/** @internal The set of issues this schema might throw during type checking. */
|
|
326
|
-
isst: $ZodIssueBase;
|
|
327
|
-
/** An optional method used to override `toJSONSchema` logic. */
|
|
328
|
-
toJSONSchema?: () => unknown;
|
|
329
|
-
/** @internal The parent of this schema. Only set during certain clone operations. */
|
|
330
|
-
parent?: $ZodType | undefined;
|
|
331
|
-
}
|
|
332
|
-
/** @internal */
|
|
333
|
-
interface $ZodTypeInternals<out O = unknown, out I = unknown> extends _$ZodTypeInternals {
|
|
334
|
-
/** @internal The inferred output type */
|
|
335
|
-
output: O;
|
|
336
|
-
/** @internal The inferred input type */
|
|
337
|
-
input: I;
|
|
338
|
-
}
|
|
339
|
-
type $ZodStandardSchema<T> = StandardSchemaV1.Props<input<T>, output<T>>;
|
|
340
|
-
type SomeType = {
|
|
341
|
-
_zod: _$ZodTypeInternals;
|
|
342
|
-
};
|
|
343
|
-
interface $ZodType<O = unknown, I = unknown, Internals extends $ZodTypeInternals<O, I> = $ZodTypeInternals<O, I>> {
|
|
344
|
-
_zod: Internals;
|
|
345
|
-
"~standard": $ZodStandardSchema<this>;
|
|
346
|
-
}
|
|
347
|
-
declare const $ZodType: $constructor<$ZodType>;
|
|
348
|
-
|
|
349
|
-
interface $ZodStringDef extends $ZodTypeDef {
|
|
350
|
-
type: "string";
|
|
351
|
-
coerce?: boolean;
|
|
352
|
-
checks?: $ZodCheck<string>[];
|
|
353
|
-
}
|
|
354
|
-
interface $ZodStringInternals<Input> extends $ZodTypeInternals<string, Input> {
|
|
355
|
-
def: $ZodStringDef;
|
|
356
|
-
/** @deprecated Internal API, use with caution (not deprecated) */
|
|
357
|
-
pattern: RegExp;
|
|
358
|
-
/** @deprecated Internal API, use with caution (not deprecated) */
|
|
359
|
-
isst: $ZodIssueInvalidType;
|
|
360
|
-
bag: LoosePartial<{
|
|
361
|
-
minimum: number;
|
|
362
|
-
maximum: number;
|
|
363
|
-
patterns: Set<RegExp>;
|
|
364
|
-
format: string;
|
|
365
|
-
contentEncoding: string;
|
|
366
|
-
}>;
|
|
367
|
-
}
|
|
368
|
-
interface $ZodStringFormatDef<Format extends string = string> extends $ZodStringDef, $ZodCheckStringFormatDef<Format> {
|
|
369
|
-
}
|
|
370
|
-
interface $ZodStringFormatInternals<Format extends string = string> extends $ZodStringInternals<string>, $ZodCheckStringFormatInternals {
|
|
371
|
-
def: $ZodStringFormatDef<Format>;
|
|
372
|
-
}
|
|
373
|
-
interface $ZodStringFormat<Format extends string = string> extends $ZodType {
|
|
374
|
-
_zod: $ZodStringFormatInternals<Format>;
|
|
375
|
-
}
|
|
376
|
-
declare const $ZodStringFormat: $constructor<$ZodStringFormat>;
|
|
377
|
-
interface $ZodGUIDInternals extends $ZodStringFormatInternals<"guid"> {
|
|
378
|
-
}
|
|
379
|
-
interface $ZodGUID extends $ZodType {
|
|
380
|
-
_zod: $ZodGUIDInternals;
|
|
381
|
-
}
|
|
382
|
-
declare const $ZodGUID: $constructor<$ZodGUID>;
|
|
383
|
-
interface $ZodUUIDDef extends $ZodStringFormatDef<"uuid"> {
|
|
384
|
-
version?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "v7" | "v8";
|
|
385
|
-
}
|
|
386
|
-
interface $ZodUUIDInternals extends $ZodStringFormatInternals<"uuid"> {
|
|
387
|
-
def: $ZodUUIDDef;
|
|
388
|
-
}
|
|
389
|
-
interface $ZodUUID extends $ZodType {
|
|
390
|
-
_zod: $ZodUUIDInternals;
|
|
391
|
-
}
|
|
392
|
-
declare const $ZodUUID: $constructor<$ZodUUID>;
|
|
393
|
-
interface $ZodEmailInternals extends $ZodStringFormatInternals<"email"> {
|
|
394
|
-
}
|
|
395
|
-
interface $ZodEmail extends $ZodType {
|
|
396
|
-
_zod: $ZodEmailInternals;
|
|
397
|
-
}
|
|
398
|
-
declare const $ZodEmail: $constructor<$ZodEmail>;
|
|
399
|
-
interface $ZodURLDef extends $ZodStringFormatDef<"url"> {
|
|
400
|
-
hostname?: RegExp | undefined;
|
|
401
|
-
protocol?: RegExp | undefined;
|
|
402
|
-
normalize?: boolean | undefined;
|
|
403
|
-
}
|
|
404
|
-
interface $ZodURLInternals extends $ZodStringFormatInternals<"url"> {
|
|
405
|
-
def: $ZodURLDef;
|
|
406
|
-
}
|
|
407
|
-
interface $ZodURL extends $ZodType {
|
|
408
|
-
_zod: $ZodURLInternals;
|
|
409
|
-
}
|
|
410
|
-
declare const $ZodURL: $constructor<$ZodURL>;
|
|
411
|
-
interface $ZodEmojiInternals extends $ZodStringFormatInternals<"emoji"> {
|
|
412
|
-
}
|
|
413
|
-
interface $ZodEmoji extends $ZodType {
|
|
414
|
-
_zod: $ZodEmojiInternals;
|
|
415
|
-
}
|
|
416
|
-
declare const $ZodEmoji: $constructor<$ZodEmoji>;
|
|
417
|
-
interface $ZodNanoIDInternals extends $ZodStringFormatInternals<"nanoid"> {
|
|
418
|
-
}
|
|
419
|
-
interface $ZodNanoID extends $ZodType {
|
|
420
|
-
_zod: $ZodNanoIDInternals;
|
|
421
|
-
}
|
|
422
|
-
declare const $ZodNanoID: $constructor<$ZodNanoID>;
|
|
423
|
-
interface $ZodCUIDInternals extends $ZodStringFormatInternals<"cuid"> {
|
|
424
|
-
}
|
|
425
|
-
interface $ZodCUID extends $ZodType {
|
|
426
|
-
_zod: $ZodCUIDInternals;
|
|
427
|
-
}
|
|
428
|
-
declare const $ZodCUID: $constructor<$ZodCUID>;
|
|
429
|
-
interface $ZodCUID2Internals extends $ZodStringFormatInternals<"cuid2"> {
|
|
430
|
-
}
|
|
431
|
-
interface $ZodCUID2 extends $ZodType {
|
|
432
|
-
_zod: $ZodCUID2Internals;
|
|
433
|
-
}
|
|
434
|
-
declare const $ZodCUID2: $constructor<$ZodCUID2>;
|
|
435
|
-
interface $ZodULIDInternals extends $ZodStringFormatInternals<"ulid"> {
|
|
436
|
-
}
|
|
437
|
-
interface $ZodULID extends $ZodType {
|
|
438
|
-
_zod: $ZodULIDInternals;
|
|
439
|
-
}
|
|
440
|
-
declare const $ZodULID: $constructor<$ZodULID>;
|
|
441
|
-
interface $ZodXIDInternals extends $ZodStringFormatInternals<"xid"> {
|
|
442
|
-
}
|
|
443
|
-
interface $ZodXID extends $ZodType {
|
|
444
|
-
_zod: $ZodXIDInternals;
|
|
445
|
-
}
|
|
446
|
-
declare const $ZodXID: $constructor<$ZodXID>;
|
|
447
|
-
interface $ZodKSUIDInternals extends $ZodStringFormatInternals<"ksuid"> {
|
|
448
|
-
}
|
|
449
|
-
interface $ZodKSUID extends $ZodType {
|
|
450
|
-
_zod: $ZodKSUIDInternals;
|
|
451
|
-
}
|
|
452
|
-
declare const $ZodKSUID: $constructor<$ZodKSUID>;
|
|
453
|
-
interface $ZodISODateTimeDef extends $ZodStringFormatDef<"datetime"> {
|
|
454
|
-
precision: number | null;
|
|
455
|
-
offset: boolean;
|
|
456
|
-
local: boolean;
|
|
457
|
-
}
|
|
458
|
-
interface $ZodISODateTimeInternals extends $ZodStringFormatInternals {
|
|
459
|
-
def: $ZodISODateTimeDef;
|
|
460
|
-
}
|
|
461
|
-
interface $ZodISODateTime extends $ZodType {
|
|
462
|
-
_zod: $ZodISODateTimeInternals;
|
|
463
|
-
}
|
|
464
|
-
declare const $ZodISODateTime: $constructor<$ZodISODateTime>;
|
|
465
|
-
interface $ZodISODateInternals extends $ZodStringFormatInternals<"date"> {
|
|
466
|
-
}
|
|
467
|
-
interface $ZodISODate extends $ZodType {
|
|
468
|
-
_zod: $ZodISODateInternals;
|
|
469
|
-
}
|
|
470
|
-
declare const $ZodISODate: $constructor<$ZodISODate>;
|
|
471
|
-
interface $ZodISOTimeDef extends $ZodStringFormatDef<"time"> {
|
|
472
|
-
precision?: number | null;
|
|
473
|
-
}
|
|
474
|
-
interface $ZodISOTimeInternals extends $ZodStringFormatInternals<"time"> {
|
|
475
|
-
def: $ZodISOTimeDef;
|
|
476
|
-
}
|
|
477
|
-
interface $ZodISOTime extends $ZodType {
|
|
478
|
-
_zod: $ZodISOTimeInternals;
|
|
479
|
-
}
|
|
480
|
-
declare const $ZodISOTime: $constructor<$ZodISOTime>;
|
|
481
|
-
interface $ZodISODurationInternals extends $ZodStringFormatInternals<"duration"> {
|
|
482
|
-
}
|
|
483
|
-
interface $ZodISODuration extends $ZodType {
|
|
484
|
-
_zod: $ZodISODurationInternals;
|
|
485
|
-
}
|
|
486
|
-
declare const $ZodISODuration: $constructor<$ZodISODuration>;
|
|
487
|
-
interface $ZodIPv4Def extends $ZodStringFormatDef<"ipv4"> {
|
|
488
|
-
version?: "v4";
|
|
489
|
-
}
|
|
490
|
-
interface $ZodIPv4Internals extends $ZodStringFormatInternals<"ipv4"> {
|
|
491
|
-
def: $ZodIPv4Def;
|
|
492
|
-
}
|
|
493
|
-
interface $ZodIPv4 extends $ZodType {
|
|
494
|
-
_zod: $ZodIPv4Internals;
|
|
495
|
-
}
|
|
496
|
-
declare const $ZodIPv4: $constructor<$ZodIPv4>;
|
|
497
|
-
interface $ZodIPv6Def extends $ZodStringFormatDef<"ipv6"> {
|
|
498
|
-
version?: "v6";
|
|
499
|
-
}
|
|
500
|
-
interface $ZodIPv6Internals extends $ZodStringFormatInternals<"ipv6"> {
|
|
501
|
-
def: $ZodIPv6Def;
|
|
502
|
-
}
|
|
503
|
-
interface $ZodIPv6 extends $ZodType {
|
|
504
|
-
_zod: $ZodIPv6Internals;
|
|
505
|
-
}
|
|
506
|
-
declare const $ZodIPv6: $constructor<$ZodIPv6>;
|
|
507
|
-
interface $ZodCIDRv4Def extends $ZodStringFormatDef<"cidrv4"> {
|
|
508
|
-
version?: "v4";
|
|
509
|
-
}
|
|
510
|
-
interface $ZodCIDRv4Internals extends $ZodStringFormatInternals<"cidrv4"> {
|
|
511
|
-
def: $ZodCIDRv4Def;
|
|
512
|
-
}
|
|
513
|
-
interface $ZodCIDRv4 extends $ZodType {
|
|
514
|
-
_zod: $ZodCIDRv4Internals;
|
|
515
|
-
}
|
|
516
|
-
declare const $ZodCIDRv4: $constructor<$ZodCIDRv4>;
|
|
517
|
-
interface $ZodCIDRv6Def extends $ZodStringFormatDef<"cidrv6"> {
|
|
518
|
-
version?: "v6";
|
|
519
|
-
}
|
|
520
|
-
interface $ZodCIDRv6Internals extends $ZodStringFormatInternals<"cidrv6"> {
|
|
521
|
-
def: $ZodCIDRv6Def;
|
|
522
|
-
}
|
|
523
|
-
interface $ZodCIDRv6 extends $ZodType {
|
|
524
|
-
_zod: $ZodCIDRv6Internals;
|
|
525
|
-
}
|
|
526
|
-
declare const $ZodCIDRv6: $constructor<$ZodCIDRv6>;
|
|
527
|
-
interface $ZodBase64Internals extends $ZodStringFormatInternals<"base64"> {
|
|
528
|
-
}
|
|
529
|
-
interface $ZodBase64 extends $ZodType {
|
|
530
|
-
_zod: $ZodBase64Internals;
|
|
531
|
-
}
|
|
532
|
-
declare const $ZodBase64: $constructor<$ZodBase64>;
|
|
533
|
-
interface $ZodBase64URLInternals extends $ZodStringFormatInternals<"base64url"> {
|
|
534
|
-
}
|
|
535
|
-
interface $ZodBase64URL extends $ZodType {
|
|
536
|
-
_zod: $ZodBase64URLInternals;
|
|
537
|
-
}
|
|
538
|
-
declare const $ZodBase64URL: $constructor<$ZodBase64URL>;
|
|
539
|
-
interface $ZodE164Internals extends $ZodStringFormatInternals<"e164"> {
|
|
540
|
-
}
|
|
541
|
-
interface $ZodE164 extends $ZodType {
|
|
542
|
-
_zod: $ZodE164Internals;
|
|
543
|
-
}
|
|
544
|
-
declare const $ZodE164: $constructor<$ZodE164>;
|
|
545
|
-
interface $ZodJWTDef extends $ZodStringFormatDef<"jwt"> {
|
|
546
|
-
alg?: JWTAlgorithm | undefined;
|
|
547
|
-
}
|
|
548
|
-
interface $ZodJWTInternals extends $ZodStringFormatInternals<"jwt"> {
|
|
549
|
-
def: $ZodJWTDef;
|
|
550
|
-
}
|
|
551
|
-
interface $ZodJWT extends $ZodType {
|
|
552
|
-
_zod: $ZodJWTInternals;
|
|
553
|
-
}
|
|
554
|
-
declare const $ZodJWT: $constructor<$ZodJWT>;
|
|
555
|
-
interface $ZodNumberDef extends $ZodTypeDef {
|
|
556
|
-
type: "number";
|
|
557
|
-
coerce?: boolean;
|
|
558
|
-
}
|
|
559
|
-
interface $ZodNumberInternals<Input = unknown> extends $ZodTypeInternals<number, Input> {
|
|
560
|
-
def: $ZodNumberDef;
|
|
561
|
-
/** @deprecated Internal API, use with caution (not deprecated) */
|
|
562
|
-
pattern: RegExp;
|
|
563
|
-
/** @deprecated Internal API, use with caution (not deprecated) */
|
|
564
|
-
isst: $ZodIssueInvalidType;
|
|
565
|
-
bag: LoosePartial<{
|
|
566
|
-
minimum: number;
|
|
567
|
-
maximum: number;
|
|
568
|
-
exclusiveMinimum: number;
|
|
569
|
-
exclusiveMaximum: number;
|
|
570
|
-
format: string;
|
|
571
|
-
pattern: RegExp;
|
|
572
|
-
}>;
|
|
573
|
-
}
|
|
574
|
-
interface $ZodNumberFormatDef extends $ZodNumberDef, $ZodCheckNumberFormatDef {
|
|
575
|
-
}
|
|
576
|
-
interface $ZodNumberFormatInternals extends $ZodNumberInternals<number>, $ZodCheckNumberFormatInternals {
|
|
577
|
-
def: $ZodNumberFormatDef;
|
|
578
|
-
isst: $ZodIssueInvalidType;
|
|
579
|
-
}
|
|
580
|
-
interface $ZodArrayDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
581
|
-
type: "array";
|
|
582
|
-
element: T;
|
|
583
|
-
}
|
|
584
|
-
interface $ZodArrayInternals<T extends SomeType = $ZodType> extends _$ZodTypeInternals {
|
|
585
|
-
def: $ZodArrayDef<T>;
|
|
586
|
-
isst: $ZodIssueInvalidType;
|
|
587
|
-
output: output<T>[];
|
|
588
|
-
input: input<T>[];
|
|
589
|
-
}
|
|
590
|
-
interface $ZodArray<T extends SomeType = $ZodType> extends $ZodType<any, any, $ZodArrayInternals<T>> {
|
|
591
|
-
}
|
|
592
|
-
declare const $ZodArray: $constructor<$ZodArray>;
|
|
593
|
-
type OptionalOutSchema = {
|
|
594
|
-
_zod: {
|
|
595
|
-
optout: "optional";
|
|
596
|
-
};
|
|
597
|
-
};
|
|
598
|
-
type OptionalInSchema = {
|
|
599
|
-
_zod: {
|
|
600
|
-
optin: "optional";
|
|
601
|
-
};
|
|
602
|
-
};
|
|
603
|
-
type $InferObjectOutput<T extends $ZodLooseShape, Extra extends Record<string, unknown>> = string extends keyof T ? IsAny<T[keyof T]> extends true ? Record<string, unknown> : Record<string, output<T[keyof T]>> : keyof (T & Extra) extends never ? Record<string, never> : Prettify<{
|
|
604
|
-
-readonly [k in keyof T as T[k] extends OptionalOutSchema ? never : k]: T[k]["_zod"]["output"];
|
|
605
|
-
} & {
|
|
606
|
-
-readonly [k in keyof T as T[k] extends OptionalOutSchema ? k : never]?: T[k]["_zod"]["output"];
|
|
607
|
-
} & Extra>;
|
|
608
|
-
type $InferObjectInput<T extends $ZodLooseShape, Extra extends Record<string, unknown>> = string extends keyof T ? IsAny<T[keyof T]> extends true ? Record<string, unknown> : Record<string, input<T[keyof T]>> : keyof (T & Extra) extends never ? Record<string, never> : Prettify<{
|
|
609
|
-
-readonly [k in keyof T as T[k] extends OptionalInSchema ? never : k]: T[k]["_zod"]["input"];
|
|
610
|
-
} & {
|
|
611
|
-
-readonly [k in keyof T as T[k] extends OptionalInSchema ? k : never]?: T[k]["_zod"]["input"];
|
|
612
|
-
} & Extra>;
|
|
613
|
-
type $ZodObjectConfig = {
|
|
614
|
-
out: Record<string, unknown>;
|
|
615
|
-
in: Record<string, unknown>;
|
|
616
|
-
};
|
|
617
|
-
type $loose = {
|
|
618
|
-
out: Record<string, unknown>;
|
|
619
|
-
in: Record<string, unknown>;
|
|
620
|
-
};
|
|
621
|
-
type $strict = {
|
|
622
|
-
out: {};
|
|
623
|
-
in: {};
|
|
624
|
-
};
|
|
625
|
-
type $strip = {
|
|
626
|
-
out: {};
|
|
627
|
-
in: {};
|
|
628
|
-
};
|
|
629
|
-
type $catchall<T extends SomeType> = {
|
|
630
|
-
out: {
|
|
631
|
-
[k: string]: output<T>;
|
|
632
|
-
};
|
|
633
|
-
in: {
|
|
634
|
-
[k: string]: input<T>;
|
|
635
|
-
};
|
|
636
|
-
};
|
|
637
|
-
type $ZodShape = Readonly<{
|
|
638
|
-
[k: string]: $ZodType;
|
|
639
|
-
}>;
|
|
640
|
-
interface $ZodObjectDef<Shape extends $ZodShape = $ZodShape> extends $ZodTypeDef {
|
|
641
|
-
type: "object";
|
|
642
|
-
shape: Shape;
|
|
643
|
-
catchall?: $ZodType | undefined;
|
|
644
|
-
}
|
|
645
|
-
interface $ZodObjectInternals<
|
|
646
|
-
/** @ts-ignore Cast variance */
|
|
647
|
-
out Shape extends $ZodShape = $ZodShape, out Config extends $ZodObjectConfig = $ZodObjectConfig> extends _$ZodTypeInternals {
|
|
648
|
-
def: $ZodObjectDef<Shape>;
|
|
649
|
-
config: Config;
|
|
650
|
-
isst: $ZodIssueInvalidType | $ZodIssueUnrecognizedKeys;
|
|
651
|
-
propValues: PropValues;
|
|
652
|
-
output: $InferObjectOutput<Shape, Config["out"]>;
|
|
653
|
-
input: $InferObjectInput<Shape, Config["in"]>;
|
|
654
|
-
optin?: "optional" | undefined;
|
|
655
|
-
optout?: "optional" | undefined;
|
|
656
|
-
}
|
|
657
|
-
type $ZodLooseShape = Record<string, any>;
|
|
658
|
-
interface $ZodObject<
|
|
659
|
-
/** @ts-ignore Cast variance */
|
|
660
|
-
out Shape extends Readonly<$ZodShape> = Readonly<$ZodShape>, out Params extends $ZodObjectConfig = $ZodObjectConfig> extends $ZodType<any, any, $ZodObjectInternals<Shape, Params>> {
|
|
661
|
-
"~standard": $ZodStandardSchema<this>;
|
|
662
|
-
}
|
|
663
|
-
declare const $ZodObject: $constructor<$ZodObject>;
|
|
664
|
-
type $InferUnionOutput<T extends SomeType> = T extends any ? output<T> : never;
|
|
665
|
-
type $InferUnionInput<T extends SomeType> = T extends any ? input<T> : never;
|
|
666
|
-
interface $ZodUnionDef<Options extends readonly SomeType[] = readonly $ZodType[]> extends $ZodTypeDef {
|
|
667
|
-
type: "union";
|
|
668
|
-
options: Options;
|
|
669
|
-
}
|
|
670
|
-
type IsOptionalIn<T extends SomeType> = T extends OptionalInSchema ? true : false;
|
|
671
|
-
type IsOptionalOut<T extends SomeType> = T extends OptionalOutSchema ? true : false;
|
|
672
|
-
interface $ZodUnionInternals<T extends readonly SomeType[] = readonly $ZodType[]> extends _$ZodTypeInternals {
|
|
673
|
-
def: $ZodUnionDef<T>;
|
|
674
|
-
isst: $ZodIssueInvalidUnion;
|
|
675
|
-
pattern: T[number]["_zod"]["pattern"];
|
|
676
|
-
values: T[number]["_zod"]["values"];
|
|
677
|
-
output: $InferUnionOutput<T[number]>;
|
|
678
|
-
input: $InferUnionInput<T[number]>;
|
|
679
|
-
optin: IsOptionalIn<T[number]> extends false ? "optional" | undefined : "optional";
|
|
680
|
-
optout: IsOptionalOut<T[number]> extends false ? "optional" | undefined : "optional";
|
|
681
|
-
}
|
|
682
|
-
interface $ZodUnion<T extends readonly SomeType[] = readonly $ZodType[]> extends $ZodType<any, any, $ZodUnionInternals<T>> {
|
|
683
|
-
_zod: $ZodUnionInternals<T>;
|
|
684
|
-
}
|
|
685
|
-
declare const $ZodUnion: $constructor<$ZodUnion>;
|
|
686
|
-
interface $ZodIntersectionDef<Left extends SomeType = $ZodType, Right extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
687
|
-
type: "intersection";
|
|
688
|
-
left: Left;
|
|
689
|
-
right: Right;
|
|
690
|
-
}
|
|
691
|
-
interface $ZodIntersectionInternals<A extends SomeType = $ZodType, B extends SomeType = $ZodType> extends _$ZodTypeInternals {
|
|
692
|
-
def: $ZodIntersectionDef<A, B>;
|
|
693
|
-
isst: never;
|
|
694
|
-
optin: A["_zod"]["optin"] | B["_zod"]["optin"];
|
|
695
|
-
optout: A["_zod"]["optout"] | B["_zod"]["optout"];
|
|
696
|
-
output: output<A> & output<B>;
|
|
697
|
-
input: input<A> & input<B>;
|
|
698
|
-
}
|
|
699
|
-
interface $ZodIntersection<A extends SomeType = $ZodType, B extends SomeType = $ZodType> extends $ZodType {
|
|
700
|
-
_zod: $ZodIntersectionInternals<A, B>;
|
|
701
|
-
}
|
|
702
|
-
declare const $ZodIntersection: $constructor<$ZodIntersection>;
|
|
703
|
-
type $ZodRecordKey = $ZodType<string | number | symbol, string | number | symbol>;
|
|
704
|
-
interface $ZodRecordDef<Key extends $ZodRecordKey = $ZodRecordKey, Value extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
705
|
-
type: "record";
|
|
706
|
-
keyType: Key;
|
|
707
|
-
valueType: Value;
|
|
708
|
-
}
|
|
709
|
-
type $InferZodRecordOutput<Key extends $ZodRecordKey = $ZodRecordKey, Value extends SomeType = $ZodType> = Key extends $partial ? Partial<Record<output<Key>, output<Value>>> : Record<output<Key>, output<Value>>;
|
|
710
|
-
type $InferZodRecordInput<Key extends $ZodRecordKey = $ZodRecordKey, Value extends SomeType = $ZodType> = Key extends $partial ? Partial<Record<input<Key>, input<Value>>> : Record<input<Key>, input<Value>>;
|
|
711
|
-
interface $ZodRecordInternals<Key extends $ZodRecordKey = $ZodRecordKey, Value extends SomeType = $ZodType> extends $ZodTypeInternals<$InferZodRecordOutput<Key, Value>, $InferZodRecordInput<Key, Value>> {
|
|
712
|
-
def: $ZodRecordDef<Key, Value>;
|
|
713
|
-
isst: $ZodIssueInvalidType | $ZodIssueInvalidKey<Record<PropertyKey, unknown>>;
|
|
714
|
-
optin?: "optional" | undefined;
|
|
715
|
-
optout?: "optional" | undefined;
|
|
716
|
-
}
|
|
717
|
-
type $partial = {
|
|
718
|
-
"~~partial": true;
|
|
719
|
-
};
|
|
720
|
-
interface $ZodRecord<Key extends $ZodRecordKey = $ZodRecordKey, Value extends SomeType = $ZodType> extends $ZodType {
|
|
721
|
-
_zod: $ZodRecordInternals<Key, Value>;
|
|
722
|
-
}
|
|
723
|
-
declare const $ZodRecord: $constructor<$ZodRecord>;
|
|
724
|
-
type $InferEnumOutput<T extends EnumLike> = T[keyof T] & {};
|
|
725
|
-
type $InferEnumInput<T extends EnumLike> = T[keyof T] & {};
|
|
726
|
-
interface $ZodEnumDef<T extends EnumLike = EnumLike> extends $ZodTypeDef {
|
|
727
|
-
type: "enum";
|
|
728
|
-
entries: T;
|
|
729
|
-
}
|
|
730
|
-
interface $ZodEnumInternals<
|
|
731
|
-
/** @ts-ignore Cast variance */
|
|
732
|
-
out T extends EnumLike = EnumLike> extends $ZodTypeInternals<$InferEnumOutput<T>, $InferEnumInput<T>> {
|
|
733
|
-
def: $ZodEnumDef<T>;
|
|
734
|
-
/** @deprecated Internal API, use with caution (not deprecated) */
|
|
735
|
-
values: PrimitiveSet;
|
|
736
|
-
/** @deprecated Internal API, use with caution (not deprecated) */
|
|
737
|
-
pattern: RegExp;
|
|
738
|
-
isst: $ZodIssueInvalidValue;
|
|
739
|
-
}
|
|
740
|
-
interface $ZodEnum<T extends EnumLike = EnumLike> extends $ZodType {
|
|
741
|
-
_zod: $ZodEnumInternals<T>;
|
|
742
|
-
}
|
|
743
|
-
declare const $ZodEnum: $constructor<$ZodEnum>;
|
|
744
|
-
interface $ZodLiteralDef<T extends Literal> extends $ZodTypeDef {
|
|
745
|
-
type: "literal";
|
|
746
|
-
values: T[];
|
|
747
|
-
}
|
|
748
|
-
interface $ZodLiteralInternals<T extends Literal = Literal> extends $ZodTypeInternals<T, T> {
|
|
749
|
-
def: $ZodLiteralDef<T>;
|
|
750
|
-
values: Set<T>;
|
|
751
|
-
pattern: RegExp;
|
|
752
|
-
isst: $ZodIssueInvalidValue;
|
|
753
|
-
}
|
|
754
|
-
interface $ZodLiteral<T extends Literal = Literal> extends $ZodType {
|
|
755
|
-
_zod: $ZodLiteralInternals<T>;
|
|
756
|
-
}
|
|
757
|
-
declare const $ZodLiteral: $constructor<$ZodLiteral>;
|
|
758
|
-
interface $ZodTransformDef extends $ZodTypeDef {
|
|
759
|
-
type: "transform";
|
|
760
|
-
transform: (input: unknown, payload: ParsePayload<unknown>) => MaybeAsync<unknown>;
|
|
761
|
-
}
|
|
762
|
-
interface $ZodTransformInternals<O = unknown, I = unknown> extends $ZodTypeInternals<O, I> {
|
|
763
|
-
def: $ZodTransformDef;
|
|
764
|
-
isst: never;
|
|
765
|
-
}
|
|
766
|
-
interface $ZodTransform<O = unknown, I = unknown> extends $ZodType {
|
|
767
|
-
_zod: $ZodTransformInternals<O, I>;
|
|
768
|
-
}
|
|
769
|
-
declare const $ZodTransform: $constructor<$ZodTransform>;
|
|
770
|
-
interface $ZodOptionalDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
771
|
-
type: "optional";
|
|
772
|
-
innerType: T;
|
|
773
|
-
}
|
|
774
|
-
interface $ZodOptionalInternals<T extends SomeType = $ZodType> extends $ZodTypeInternals<output<T> | undefined, input<T> | undefined> {
|
|
775
|
-
def: $ZodOptionalDef<T>;
|
|
776
|
-
optin: "optional";
|
|
777
|
-
optout: "optional";
|
|
778
|
-
isst: never;
|
|
779
|
-
values: T["_zod"]["values"];
|
|
780
|
-
pattern: T["_zod"]["pattern"];
|
|
781
|
-
}
|
|
782
|
-
interface $ZodOptional<T extends SomeType = $ZodType> extends $ZodType {
|
|
783
|
-
_zod: $ZodOptionalInternals<T>;
|
|
784
|
-
}
|
|
785
|
-
declare const $ZodOptional: $constructor<$ZodOptional>;
|
|
786
|
-
interface $ZodNullableDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
787
|
-
type: "nullable";
|
|
788
|
-
innerType: T;
|
|
789
|
-
}
|
|
790
|
-
interface $ZodNullableInternals<T extends SomeType = $ZodType> extends $ZodTypeInternals<output<T> | null, input<T> | null> {
|
|
791
|
-
def: $ZodNullableDef<T>;
|
|
792
|
-
optin: T["_zod"]["optin"];
|
|
793
|
-
optout: T["_zod"]["optout"];
|
|
794
|
-
isst: never;
|
|
795
|
-
values: T["_zod"]["values"];
|
|
796
|
-
pattern: T["_zod"]["pattern"];
|
|
797
|
-
}
|
|
798
|
-
interface $ZodNullable<T extends SomeType = $ZodType> extends $ZodType {
|
|
799
|
-
_zod: $ZodNullableInternals<T>;
|
|
800
|
-
}
|
|
801
|
-
declare const $ZodNullable: $constructor<$ZodNullable>;
|
|
802
|
-
interface $ZodDefaultDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
803
|
-
type: "default";
|
|
804
|
-
innerType: T;
|
|
805
|
-
/** The default value. May be a getter. */
|
|
806
|
-
defaultValue: NoUndefined<output<T>>;
|
|
807
|
-
}
|
|
808
|
-
interface $ZodDefaultInternals<T extends SomeType = $ZodType> extends $ZodTypeInternals<NoUndefined<output<T>>, input<T> | undefined> {
|
|
809
|
-
def: $ZodDefaultDef<T>;
|
|
810
|
-
optin: "optional";
|
|
811
|
-
optout?: "optional" | undefined;
|
|
812
|
-
isst: never;
|
|
813
|
-
values: T["_zod"]["values"];
|
|
814
|
-
}
|
|
815
|
-
interface $ZodDefault<T extends SomeType = $ZodType> extends $ZodType {
|
|
816
|
-
_zod: $ZodDefaultInternals<T>;
|
|
817
|
-
}
|
|
818
|
-
declare const $ZodDefault: $constructor<$ZodDefault>;
|
|
819
|
-
interface $ZodPrefaultDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
820
|
-
type: "prefault";
|
|
821
|
-
innerType: T;
|
|
822
|
-
/** The default value. May be a getter. */
|
|
823
|
-
defaultValue: input<T>;
|
|
824
|
-
}
|
|
825
|
-
interface $ZodPrefaultInternals<T extends SomeType = $ZodType> extends $ZodTypeInternals<NoUndefined<output<T>>, input<T> | undefined> {
|
|
826
|
-
def: $ZodPrefaultDef<T>;
|
|
827
|
-
optin: "optional";
|
|
828
|
-
optout?: "optional" | undefined;
|
|
829
|
-
isst: never;
|
|
830
|
-
values: T["_zod"]["values"];
|
|
831
|
-
}
|
|
832
|
-
interface $ZodPrefault<T extends SomeType = $ZodType> extends $ZodType {
|
|
833
|
-
_zod: $ZodPrefaultInternals<T>;
|
|
834
|
-
}
|
|
835
|
-
declare const $ZodPrefault: $constructor<$ZodPrefault>;
|
|
836
|
-
interface $ZodNonOptionalDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
837
|
-
type: "nonoptional";
|
|
838
|
-
innerType: T;
|
|
839
|
-
}
|
|
840
|
-
interface $ZodNonOptionalInternals<T extends SomeType = $ZodType> extends $ZodTypeInternals<NoUndefined<output<T>>, NoUndefined<input<T>>> {
|
|
841
|
-
def: $ZodNonOptionalDef<T>;
|
|
842
|
-
isst: $ZodIssueInvalidType;
|
|
843
|
-
values: T["_zod"]["values"];
|
|
844
|
-
optin: "optional" | undefined;
|
|
845
|
-
optout: "optional" | undefined;
|
|
846
|
-
}
|
|
847
|
-
interface $ZodNonOptional<T extends SomeType = $ZodType> extends $ZodType {
|
|
848
|
-
_zod: $ZodNonOptionalInternals<T>;
|
|
849
|
-
}
|
|
850
|
-
declare const $ZodNonOptional: $constructor<$ZodNonOptional>;
|
|
851
|
-
interface $ZodCatchCtx extends ParsePayload {
|
|
852
|
-
/** @deprecated Use `ctx.issues` */
|
|
853
|
-
error: {
|
|
854
|
-
issues: $ZodIssue[];
|
|
855
|
-
};
|
|
856
|
-
/** @deprecated Use `ctx.value` */
|
|
857
|
-
input: unknown;
|
|
858
|
-
}
|
|
859
|
-
interface $ZodCatchDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
860
|
-
type: "catch";
|
|
861
|
-
innerType: T;
|
|
862
|
-
catchValue: (ctx: $ZodCatchCtx) => unknown;
|
|
863
|
-
}
|
|
864
|
-
interface $ZodCatchInternals<T extends SomeType = $ZodType> extends $ZodTypeInternals<output<T>, input<T>> {
|
|
865
|
-
def: $ZodCatchDef<T>;
|
|
866
|
-
optin: T["_zod"]["optin"];
|
|
867
|
-
optout: T["_zod"]["optout"];
|
|
868
|
-
isst: never;
|
|
869
|
-
values: T["_zod"]["values"];
|
|
870
|
-
}
|
|
871
|
-
interface $ZodCatch<T extends SomeType = $ZodType> extends $ZodType {
|
|
872
|
-
_zod: $ZodCatchInternals<T>;
|
|
873
|
-
}
|
|
874
|
-
declare const $ZodCatch: $constructor<$ZodCatch>;
|
|
875
|
-
interface $ZodPipeDef<A extends SomeType = $ZodType, B extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
876
|
-
type: "pipe";
|
|
877
|
-
in: A;
|
|
878
|
-
out: B;
|
|
879
|
-
/** Only defined inside $ZodCodec instances. */
|
|
880
|
-
transform?: (value: output<A>, payload: ParsePayload<output<A>>) => MaybeAsync<input<B>>;
|
|
881
|
-
/** Only defined inside $ZodCodec instances. */
|
|
882
|
-
reverseTransform?: (value: input<B>, payload: ParsePayload<input<B>>) => MaybeAsync<output<A>>;
|
|
883
|
-
}
|
|
884
|
-
interface $ZodPipeInternals<A extends SomeType = $ZodType, B extends SomeType = $ZodType> extends $ZodTypeInternals<output<B>, input<A>> {
|
|
885
|
-
def: $ZodPipeDef<A, B>;
|
|
886
|
-
isst: never;
|
|
887
|
-
values: A["_zod"]["values"];
|
|
888
|
-
optin: A["_zod"]["optin"];
|
|
889
|
-
optout: B["_zod"]["optout"];
|
|
890
|
-
propValues: A["_zod"]["propValues"];
|
|
891
|
-
}
|
|
892
|
-
interface $ZodPipe<A extends SomeType = $ZodType, B extends SomeType = $ZodType> extends $ZodType {
|
|
893
|
-
_zod: $ZodPipeInternals<A, B>;
|
|
894
|
-
}
|
|
895
|
-
declare const $ZodPipe: $constructor<$ZodPipe>;
|
|
896
|
-
interface $ZodReadonlyDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
897
|
-
type: "readonly";
|
|
898
|
-
innerType: T;
|
|
899
|
-
}
|
|
900
|
-
interface $ZodReadonlyInternals<T extends SomeType = $ZodType> extends $ZodTypeInternals<MakeReadonly<output<T>>, MakeReadonly<input<T>>> {
|
|
901
|
-
def: $ZodReadonlyDef<T>;
|
|
902
|
-
optin: T["_zod"]["optin"];
|
|
903
|
-
optout: T["_zod"]["optout"];
|
|
904
|
-
isst: never;
|
|
905
|
-
propValues: T["_zod"]["propValues"];
|
|
906
|
-
values: T["_zod"]["values"];
|
|
907
|
-
}
|
|
908
|
-
interface $ZodReadonly<T extends SomeType = $ZodType> extends $ZodType {
|
|
909
|
-
_zod: $ZodReadonlyInternals<T>;
|
|
910
|
-
}
|
|
911
|
-
declare const $ZodReadonly: $constructor<$ZodReadonly>;
|
|
912
|
-
interface $ZodCustomDef<O = unknown> extends $ZodTypeDef, $ZodCheckDef {
|
|
913
|
-
type: "custom";
|
|
914
|
-
check: "custom";
|
|
915
|
-
path?: PropertyKey[] | undefined;
|
|
916
|
-
error?: $ZodErrorMap | undefined;
|
|
917
|
-
params?: Record<string, any> | undefined;
|
|
918
|
-
fn: (arg: O) => unknown;
|
|
919
|
-
}
|
|
920
|
-
interface $ZodCustomInternals<O = unknown, I = unknown> extends $ZodTypeInternals<O, I>, $ZodCheckInternals<O> {
|
|
921
|
-
def: $ZodCustomDef;
|
|
922
|
-
issc: $ZodIssue;
|
|
923
|
-
isst: never;
|
|
924
|
-
bag: LoosePartial<{
|
|
925
|
-
Class: typeof Class;
|
|
926
|
-
}>;
|
|
927
|
-
}
|
|
928
|
-
interface $ZodCustom<O = unknown, I = unknown> extends $ZodType {
|
|
929
|
-
_zod: $ZodCustomInternals<O, I>;
|
|
930
|
-
}
|
|
931
|
-
declare const $ZodCustom: $constructor<$ZodCustom>;
|
|
932
|
-
|
|
933
|
-
interface $ZodCheckDef {
|
|
934
|
-
check: string;
|
|
935
|
-
error?: $ZodErrorMap<never> | undefined;
|
|
936
|
-
/** If true, no later checks will be executed if this check fails. Default `false`. */
|
|
937
|
-
abort?: boolean | undefined;
|
|
938
|
-
/** If provided, this check will only be executed if the function returns `true`. Defaults to `payload => z.util.isAborted(payload)`. */
|
|
939
|
-
when?: ((payload: ParsePayload) => boolean) | undefined;
|
|
940
|
-
}
|
|
941
|
-
interface $ZodCheckInternals<T> {
|
|
942
|
-
def: $ZodCheckDef;
|
|
943
|
-
/** The set of issues this check might throw. */
|
|
944
|
-
issc?: $ZodIssueBase;
|
|
945
|
-
check(payload: ParsePayload<T>): MaybeAsync<void>;
|
|
946
|
-
onattach: ((schema: $ZodType) => void)[];
|
|
947
|
-
}
|
|
948
|
-
interface $ZodCheck<in T = never> {
|
|
949
|
-
_zod: $ZodCheckInternals<T>;
|
|
950
|
-
}
|
|
951
|
-
declare const $ZodCheck: $constructor<$ZodCheck<any>>;
|
|
952
|
-
interface $ZodCheckLessThanDef extends $ZodCheckDef {
|
|
953
|
-
check: "less_than";
|
|
954
|
-
value: Numeric;
|
|
955
|
-
inclusive: boolean;
|
|
956
|
-
}
|
|
957
|
-
interface $ZodCheckLessThanInternals<T extends Numeric = Numeric> extends $ZodCheckInternals<T> {
|
|
958
|
-
def: $ZodCheckLessThanDef;
|
|
959
|
-
issc: $ZodIssueTooBig<T>;
|
|
960
|
-
}
|
|
961
|
-
interface $ZodCheckLessThan<T extends Numeric = Numeric> extends $ZodCheck<T> {
|
|
962
|
-
_zod: $ZodCheckLessThanInternals<T>;
|
|
963
|
-
}
|
|
964
|
-
declare const $ZodCheckLessThan: $constructor<$ZodCheckLessThan>;
|
|
965
|
-
interface $ZodCheckGreaterThanDef extends $ZodCheckDef {
|
|
966
|
-
check: "greater_than";
|
|
967
|
-
value: Numeric;
|
|
968
|
-
inclusive: boolean;
|
|
969
|
-
}
|
|
970
|
-
interface $ZodCheckGreaterThanInternals<T extends Numeric = Numeric> extends $ZodCheckInternals<T> {
|
|
971
|
-
def: $ZodCheckGreaterThanDef;
|
|
972
|
-
issc: $ZodIssueTooSmall<T>;
|
|
973
|
-
}
|
|
974
|
-
interface $ZodCheckGreaterThan<T extends Numeric = Numeric> extends $ZodCheck<T> {
|
|
975
|
-
_zod: $ZodCheckGreaterThanInternals<T>;
|
|
976
|
-
}
|
|
977
|
-
declare const $ZodCheckGreaterThan: $constructor<$ZodCheckGreaterThan>;
|
|
978
|
-
interface $ZodCheckMultipleOfDef<T extends number | bigint = number | bigint> extends $ZodCheckDef {
|
|
979
|
-
check: "multiple_of";
|
|
980
|
-
value: T;
|
|
981
|
-
}
|
|
982
|
-
interface $ZodCheckMultipleOfInternals<T extends number | bigint = number | bigint> extends $ZodCheckInternals<T> {
|
|
983
|
-
def: $ZodCheckMultipleOfDef<T>;
|
|
984
|
-
issc: $ZodIssueNotMultipleOf;
|
|
985
|
-
}
|
|
986
|
-
interface $ZodCheckMultipleOf<T extends number | bigint = number | bigint> extends $ZodCheck<T> {
|
|
987
|
-
_zod: $ZodCheckMultipleOfInternals<T>;
|
|
988
|
-
}
|
|
989
|
-
declare const $ZodCheckMultipleOf: $constructor<$ZodCheckMultipleOf<number | bigint>>;
|
|
990
|
-
type $ZodNumberFormats = "int32" | "uint32" | "float32" | "float64" | "safeint";
|
|
991
|
-
interface $ZodCheckNumberFormatDef extends $ZodCheckDef {
|
|
992
|
-
check: "number_format";
|
|
993
|
-
format: $ZodNumberFormats;
|
|
994
|
-
}
|
|
995
|
-
interface $ZodCheckNumberFormatInternals extends $ZodCheckInternals<number> {
|
|
996
|
-
def: $ZodCheckNumberFormatDef;
|
|
997
|
-
issc: $ZodIssueInvalidType | $ZodIssueTooBig<"number"> | $ZodIssueTooSmall<"number">;
|
|
998
|
-
}
|
|
999
|
-
interface $ZodCheckNumberFormat extends $ZodCheck<number> {
|
|
1000
|
-
_zod: $ZodCheckNumberFormatInternals;
|
|
1001
|
-
}
|
|
1002
|
-
declare const $ZodCheckNumberFormat: $constructor<$ZodCheckNumberFormat>;
|
|
1003
|
-
interface $ZodCheckMaxLengthDef extends $ZodCheckDef {
|
|
1004
|
-
check: "max_length";
|
|
1005
|
-
maximum: number;
|
|
1006
|
-
}
|
|
1007
|
-
interface $ZodCheckMaxLengthInternals<T extends HasLength = HasLength> extends $ZodCheckInternals<T> {
|
|
1008
|
-
def: $ZodCheckMaxLengthDef;
|
|
1009
|
-
issc: $ZodIssueTooBig<T>;
|
|
1010
|
-
}
|
|
1011
|
-
interface $ZodCheckMaxLength<T extends HasLength = HasLength> extends $ZodCheck<T> {
|
|
1012
|
-
_zod: $ZodCheckMaxLengthInternals<T>;
|
|
1013
|
-
}
|
|
1014
|
-
declare const $ZodCheckMaxLength: $constructor<$ZodCheckMaxLength>;
|
|
1015
|
-
interface $ZodCheckMinLengthDef extends $ZodCheckDef {
|
|
1016
|
-
check: "min_length";
|
|
1017
|
-
minimum: number;
|
|
1018
|
-
}
|
|
1019
|
-
interface $ZodCheckMinLengthInternals<T extends HasLength = HasLength> extends $ZodCheckInternals<T> {
|
|
1020
|
-
def: $ZodCheckMinLengthDef;
|
|
1021
|
-
issc: $ZodIssueTooSmall<T>;
|
|
1022
|
-
}
|
|
1023
|
-
interface $ZodCheckMinLength<T extends HasLength = HasLength> extends $ZodCheck<T> {
|
|
1024
|
-
_zod: $ZodCheckMinLengthInternals<T>;
|
|
1025
|
-
}
|
|
1026
|
-
declare const $ZodCheckMinLength: $constructor<$ZodCheckMinLength>;
|
|
1027
|
-
interface $ZodCheckLengthEqualsDef extends $ZodCheckDef {
|
|
1028
|
-
check: "length_equals";
|
|
1029
|
-
length: number;
|
|
1030
|
-
}
|
|
1031
|
-
interface $ZodCheckLengthEqualsInternals<T extends HasLength = HasLength> extends $ZodCheckInternals<T> {
|
|
1032
|
-
def: $ZodCheckLengthEqualsDef;
|
|
1033
|
-
issc: $ZodIssueTooBig<T> | $ZodIssueTooSmall<T>;
|
|
1034
|
-
}
|
|
1035
|
-
interface $ZodCheckLengthEquals<T extends HasLength = HasLength> extends $ZodCheck<T> {
|
|
1036
|
-
_zod: $ZodCheckLengthEqualsInternals<T>;
|
|
1037
|
-
}
|
|
1038
|
-
declare const $ZodCheckLengthEquals: $constructor<$ZodCheckLengthEquals>;
|
|
1039
|
-
type $ZodStringFormats = "email" | "url" | "emoji" | "uuid" | "guid" | "nanoid" | "cuid" | "cuid2" | "ulid" | "xid" | "ksuid" | "datetime" | "date" | "time" | "duration" | "ipv4" | "ipv6" | "cidrv4" | "cidrv6" | "base64" | "base64url" | "json_string" | "e164" | "lowercase" | "uppercase" | "regex" | "jwt" | "starts_with" | "ends_with" | "includes";
|
|
1040
|
-
interface $ZodCheckStringFormatDef<Format extends string = string> extends $ZodCheckDef {
|
|
1041
|
-
check: "string_format";
|
|
1042
|
-
format: Format;
|
|
1043
|
-
pattern?: RegExp | undefined;
|
|
1044
|
-
}
|
|
1045
|
-
interface $ZodCheckStringFormatInternals extends $ZodCheckInternals<string> {
|
|
1046
|
-
def: $ZodCheckStringFormatDef;
|
|
1047
|
-
issc: $ZodIssueInvalidStringFormat;
|
|
1048
|
-
}
|
|
1049
|
-
interface $ZodCheckRegexDef extends $ZodCheckStringFormatDef {
|
|
1050
|
-
format: "regex";
|
|
1051
|
-
pattern: RegExp;
|
|
1052
|
-
}
|
|
1053
|
-
interface $ZodCheckRegexInternals extends $ZodCheckInternals<string> {
|
|
1054
|
-
def: $ZodCheckRegexDef;
|
|
1055
|
-
issc: $ZodIssueInvalidStringFormat;
|
|
1056
|
-
}
|
|
1057
|
-
interface $ZodCheckRegex extends $ZodCheck<string> {
|
|
1058
|
-
_zod: $ZodCheckRegexInternals;
|
|
1059
|
-
}
|
|
1060
|
-
declare const $ZodCheckRegex: $constructor<$ZodCheckRegex>;
|
|
1061
|
-
interface $ZodCheckLowerCaseDef extends $ZodCheckStringFormatDef<"lowercase"> {
|
|
1062
|
-
}
|
|
1063
|
-
interface $ZodCheckLowerCaseInternals extends $ZodCheckInternals<string> {
|
|
1064
|
-
def: $ZodCheckLowerCaseDef;
|
|
1065
|
-
issc: $ZodIssueInvalidStringFormat;
|
|
1066
|
-
}
|
|
1067
|
-
interface $ZodCheckLowerCase extends $ZodCheck<string> {
|
|
1068
|
-
_zod: $ZodCheckLowerCaseInternals;
|
|
1069
|
-
}
|
|
1070
|
-
declare const $ZodCheckLowerCase: $constructor<$ZodCheckLowerCase>;
|
|
1071
|
-
interface $ZodCheckUpperCaseDef extends $ZodCheckStringFormatDef<"uppercase"> {
|
|
1072
|
-
}
|
|
1073
|
-
interface $ZodCheckUpperCaseInternals extends $ZodCheckInternals<string> {
|
|
1074
|
-
def: $ZodCheckUpperCaseDef;
|
|
1075
|
-
issc: $ZodIssueInvalidStringFormat;
|
|
1076
|
-
}
|
|
1077
|
-
interface $ZodCheckUpperCase extends $ZodCheck<string> {
|
|
1078
|
-
_zod: $ZodCheckUpperCaseInternals;
|
|
1079
|
-
}
|
|
1080
|
-
declare const $ZodCheckUpperCase: $constructor<$ZodCheckUpperCase>;
|
|
1081
|
-
interface $ZodCheckIncludesDef extends $ZodCheckStringFormatDef<"includes"> {
|
|
1082
|
-
includes: string;
|
|
1083
|
-
position?: number | undefined;
|
|
1084
|
-
}
|
|
1085
|
-
interface $ZodCheckIncludesInternals extends $ZodCheckInternals<string> {
|
|
1086
|
-
def: $ZodCheckIncludesDef;
|
|
1087
|
-
issc: $ZodIssueInvalidStringFormat;
|
|
1088
|
-
}
|
|
1089
|
-
interface $ZodCheckIncludes extends $ZodCheck<string> {
|
|
1090
|
-
_zod: $ZodCheckIncludesInternals;
|
|
1091
|
-
}
|
|
1092
|
-
declare const $ZodCheckIncludes: $constructor<$ZodCheckIncludes>;
|
|
1093
|
-
interface $ZodCheckStartsWithDef extends $ZodCheckStringFormatDef<"starts_with"> {
|
|
1094
|
-
prefix: string;
|
|
1095
|
-
}
|
|
1096
|
-
interface $ZodCheckStartsWithInternals extends $ZodCheckInternals<string> {
|
|
1097
|
-
def: $ZodCheckStartsWithDef;
|
|
1098
|
-
issc: $ZodIssueInvalidStringFormat;
|
|
1099
|
-
}
|
|
1100
|
-
interface $ZodCheckStartsWith extends $ZodCheck<string> {
|
|
1101
|
-
_zod: $ZodCheckStartsWithInternals;
|
|
1102
|
-
}
|
|
1103
|
-
declare const $ZodCheckStartsWith: $constructor<$ZodCheckStartsWith>;
|
|
1104
|
-
interface $ZodCheckEndsWithDef extends $ZodCheckStringFormatDef<"ends_with"> {
|
|
1105
|
-
suffix: string;
|
|
1106
|
-
}
|
|
1107
|
-
interface $ZodCheckEndsWithInternals extends $ZodCheckInternals<string> {
|
|
1108
|
-
def: $ZodCheckEndsWithDef;
|
|
1109
|
-
issc: $ZodIssueInvalidStringFormat;
|
|
1110
|
-
}
|
|
1111
|
-
interface $ZodCheckEndsWith extends $ZodCheckInternals<string> {
|
|
1112
|
-
_zod: $ZodCheckEndsWithInternals;
|
|
1113
|
-
}
|
|
1114
|
-
declare const $ZodCheckEndsWith: $constructor<$ZodCheckEndsWith>;
|
|
1115
|
-
|
|
1116
|
-
interface $ZodIssueBase {
|
|
1117
|
-
readonly code?: string;
|
|
1118
|
-
readonly input?: unknown;
|
|
1119
|
-
readonly path: PropertyKey[];
|
|
1120
|
-
readonly message: string;
|
|
1121
|
-
}
|
|
1122
|
-
interface $ZodIssueInvalidType<Input = unknown> extends $ZodIssueBase {
|
|
1123
|
-
readonly code: "invalid_type";
|
|
1124
|
-
readonly expected: $ZodType["_zod"]["def"]["type"];
|
|
1125
|
-
readonly input?: Input;
|
|
1126
|
-
}
|
|
1127
|
-
interface $ZodIssueTooBig<Input = unknown> extends $ZodIssueBase {
|
|
1128
|
-
readonly code: "too_big";
|
|
1129
|
-
readonly origin: "number" | "int" | "bigint" | "date" | "string" | "array" | "set" | "file" | (string & {});
|
|
1130
|
-
readonly maximum: number | bigint;
|
|
1131
|
-
readonly inclusive?: boolean;
|
|
1132
|
-
readonly exact?: boolean;
|
|
1133
|
-
readonly input?: Input;
|
|
1134
|
-
}
|
|
1135
|
-
interface $ZodIssueTooSmall<Input = unknown> extends $ZodIssueBase {
|
|
1136
|
-
readonly code: "too_small";
|
|
1137
|
-
readonly origin: "number" | "int" | "bigint" | "date" | "string" | "array" | "set" | "file" | (string & {});
|
|
1138
|
-
readonly minimum: number | bigint;
|
|
1139
|
-
/** True if the allowable range includes the minimum */
|
|
1140
|
-
readonly inclusive?: boolean;
|
|
1141
|
-
/** True if the allowed value is fixed (e.g.` z.length(5)`), not a range (`z.minLength(5)`) */
|
|
1142
|
-
readonly exact?: boolean;
|
|
1143
|
-
readonly input?: Input;
|
|
1144
|
-
}
|
|
1145
|
-
interface $ZodIssueInvalidStringFormat extends $ZodIssueBase {
|
|
1146
|
-
readonly code: "invalid_format";
|
|
1147
|
-
readonly format: $ZodStringFormats | (string & {});
|
|
1148
|
-
readonly pattern?: string;
|
|
1149
|
-
readonly input?: string;
|
|
1150
|
-
}
|
|
1151
|
-
interface $ZodIssueNotMultipleOf<Input extends number | bigint = number | bigint> extends $ZodIssueBase {
|
|
1152
|
-
readonly code: "not_multiple_of";
|
|
1153
|
-
readonly divisor: number;
|
|
1154
|
-
readonly input?: Input;
|
|
1155
|
-
}
|
|
1156
|
-
interface $ZodIssueUnrecognizedKeys extends $ZodIssueBase {
|
|
1157
|
-
readonly code: "unrecognized_keys";
|
|
1158
|
-
readonly keys: string[];
|
|
1159
|
-
readonly input?: Record<string, unknown>;
|
|
1160
|
-
}
|
|
1161
|
-
interface $ZodIssueInvalidUnion extends $ZodIssueBase {
|
|
1162
|
-
readonly code: "invalid_union";
|
|
1163
|
-
readonly errors: $ZodIssue[][];
|
|
1164
|
-
readonly input?: unknown;
|
|
1165
|
-
readonly discriminator?: string | undefined;
|
|
1166
|
-
}
|
|
1167
|
-
interface $ZodIssueInvalidKey<Input = unknown> extends $ZodIssueBase {
|
|
1168
|
-
readonly code: "invalid_key";
|
|
1169
|
-
readonly origin: "map" | "record";
|
|
1170
|
-
readonly issues: $ZodIssue[];
|
|
1171
|
-
readonly input?: Input;
|
|
1172
|
-
}
|
|
1173
|
-
interface $ZodIssueInvalidElement<Input = unknown> extends $ZodIssueBase {
|
|
1174
|
-
readonly code: "invalid_element";
|
|
1175
|
-
readonly origin: "map" | "set";
|
|
1176
|
-
readonly key: unknown;
|
|
1177
|
-
readonly issues: $ZodIssue[];
|
|
1178
|
-
readonly input?: Input;
|
|
1179
|
-
}
|
|
1180
|
-
interface $ZodIssueInvalidValue<Input = unknown> extends $ZodIssueBase {
|
|
1181
|
-
readonly code: "invalid_value";
|
|
1182
|
-
readonly values: Primitive[];
|
|
1183
|
-
readonly input?: Input;
|
|
1184
|
-
}
|
|
1185
|
-
interface $ZodIssueCustom extends $ZodIssueBase {
|
|
1186
|
-
readonly code: "custom";
|
|
1187
|
-
readonly params?: Record<string, any> | undefined;
|
|
1188
|
-
readonly input?: unknown;
|
|
1189
|
-
}
|
|
1190
|
-
type $ZodIssue = $ZodIssueInvalidType | $ZodIssueTooBig | $ZodIssueTooSmall | $ZodIssueInvalidStringFormat | $ZodIssueNotMultipleOf | $ZodIssueUnrecognizedKeys | $ZodIssueInvalidUnion | $ZodIssueInvalidKey | $ZodIssueInvalidElement | $ZodIssueInvalidValue | $ZodIssueCustom;
|
|
1191
|
-
type $ZodInternalIssue<T extends $ZodIssueBase = $ZodIssue> = T extends any ? RawIssue$1<T> : never;
|
|
1192
|
-
type RawIssue$1<T extends $ZodIssueBase> = T extends any ? Flatten<MakePartial<T, "message" | "path"> & {
|
|
1193
|
-
/** The input data */
|
|
1194
|
-
readonly input: unknown;
|
|
1195
|
-
/** The schema or check that originated this issue. */
|
|
1196
|
-
readonly inst?: $ZodType | $ZodCheck;
|
|
1197
|
-
/** If `true`, Zod will continue executing checks/refinements after this issue. */
|
|
1198
|
-
readonly continue?: boolean | undefined;
|
|
1199
|
-
} & Record<string, unknown>> : never;
|
|
1200
|
-
type $ZodRawIssue<T extends $ZodIssueBase = $ZodIssue> = $ZodInternalIssue<T>;
|
|
1201
|
-
interface $ZodErrorMap<T extends $ZodIssueBase = $ZodIssue> {
|
|
1202
|
-
(issue: $ZodRawIssue<T>): {
|
|
1203
|
-
message: string;
|
|
1204
|
-
} | string | undefined | null;
|
|
1205
|
-
}
|
|
1206
|
-
interface $ZodError<T = unknown> extends Error {
|
|
1207
|
-
type: T;
|
|
1208
|
-
issues: $ZodIssue[];
|
|
1209
|
-
_zod: {
|
|
1210
|
-
output: T;
|
|
1211
|
-
def: $ZodIssue[];
|
|
1212
|
-
};
|
|
1213
|
-
stack?: string;
|
|
1214
|
-
name: string;
|
|
1215
|
-
}
|
|
1216
|
-
declare const $ZodError: $constructor<$ZodError>;
|
|
1217
|
-
type $ZodFlattenedError<T, U = string> = _FlattenedError<T, U>;
|
|
1218
|
-
type _FlattenedError<T, U = string> = {
|
|
1219
|
-
formErrors: U[];
|
|
1220
|
-
fieldErrors: {
|
|
1221
|
-
[P in keyof T]?: U[];
|
|
1222
|
-
};
|
|
1223
|
-
};
|
|
1224
|
-
type _ZodFormattedError<T, U = string> = T extends [any, ...any[]] ? {
|
|
1225
|
-
[K in keyof T]?: $ZodFormattedError<T[K], U>;
|
|
1226
|
-
} : T extends any[] ? {
|
|
1227
|
-
[k: number]: $ZodFormattedError<T[number], U>;
|
|
1228
|
-
} : T extends object ? Flatten<{
|
|
1229
|
-
[K in keyof T]?: $ZodFormattedError<T[K], U>;
|
|
1230
|
-
}> : any;
|
|
1231
|
-
type $ZodFormattedError<T, U = string> = {
|
|
1232
|
-
_errors: U[];
|
|
1233
|
-
} & Flatten<_ZodFormattedError<T, U>>;
|
|
1234
|
-
|
|
1235
|
-
type ZodTrait = {
|
|
1236
|
-
_zod: {
|
|
1237
|
-
def: any;
|
|
1238
|
-
[k: string]: any;
|
|
1239
|
-
};
|
|
1240
|
-
};
|
|
1241
|
-
interface $constructor<T extends ZodTrait, D = T["_zod"]["def"]> {
|
|
1242
|
-
new (def: D): T;
|
|
1243
|
-
init(inst: T, def: D): asserts inst is T;
|
|
1244
|
-
}
|
|
1245
|
-
declare function $constructor<T extends ZodTrait, D = T["_zod"]["def"]>(name: string, initializer: (inst: T, def: D) => void, params?: {
|
|
1246
|
-
Parent?: typeof Class;
|
|
1247
|
-
}): $constructor<T, D>;
|
|
1248
|
-
declare const $brand: unique symbol;
|
|
1249
|
-
type $brand<T extends string | number | symbol = string | number | symbol> = {
|
|
1250
|
-
[$brand]: {
|
|
1251
|
-
[k in T]: true;
|
|
1252
|
-
};
|
|
1253
|
-
};
|
|
1254
|
-
type $ZodBranded<T extends SomeType, Brand extends string | number | symbol> = T & Record<"_zod", Record<"output", output<T> & $brand<Brand>>>;
|
|
1255
|
-
type input<T> = T extends {
|
|
1256
|
-
_zod: {
|
|
1257
|
-
input: any;
|
|
1258
|
-
};
|
|
1259
|
-
} ? T["_zod"]["input"] : unknown;
|
|
1260
|
-
type output<T> = T extends {
|
|
1261
|
-
_zod: {
|
|
1262
|
-
output: any;
|
|
1263
|
-
};
|
|
1264
|
-
} ? T["_zod"]["output"] : unknown;
|
|
1265
|
-
|
|
1266
|
-
declare const $output: unique symbol;
|
|
1267
|
-
type $output = typeof $output;
|
|
1268
|
-
declare const $input: unique symbol;
|
|
1269
|
-
type $input = typeof $input;
|
|
1270
|
-
type $replace<Meta, S extends $ZodType> = Meta extends $output ? output<S> : Meta extends $input ? input<S> : Meta extends (infer M)[] ? $replace<M, S>[] : Meta extends (...args: infer P) => infer R ? (...args: {
|
|
1271
|
-
[K in keyof P]: $replace<P[K], S>;
|
|
1272
|
-
}) => $replace<R, S> : Meta extends object ? {
|
|
1273
|
-
[K in keyof Meta]: $replace<Meta[K], S>;
|
|
1274
|
-
} : Meta;
|
|
1275
|
-
type MetadataType = object | undefined;
|
|
1276
|
-
declare class $ZodRegistry<Meta extends MetadataType = MetadataType, Schema extends $ZodType = $ZodType> {
|
|
1277
|
-
_meta: Meta;
|
|
1278
|
-
_schema: Schema;
|
|
1279
|
-
_map: WeakMap<Schema, $replace<Meta, Schema>>;
|
|
1280
|
-
_idmap: Map<string, Schema>;
|
|
1281
|
-
add<S extends Schema>(schema: S, ..._meta: undefined extends Meta ? [$replace<Meta, S>?] : [$replace<Meta, S>]): this;
|
|
1282
|
-
clear(): this;
|
|
1283
|
-
remove(schema: Schema): this;
|
|
1284
|
-
get<S extends Schema>(schema: S): $replace<Meta, S> | undefined;
|
|
1285
|
-
has(schema: Schema): boolean;
|
|
1286
|
-
}
|
|
1287
|
-
interface JSONSchemaMeta {
|
|
1288
|
-
id?: string | undefined;
|
|
1289
|
-
title?: string | undefined;
|
|
1290
|
-
description?: string | undefined;
|
|
1291
|
-
deprecated?: boolean | undefined;
|
|
1292
|
-
[k: string]: unknown;
|
|
1293
|
-
}
|
|
1294
|
-
interface GlobalMeta extends JSONSchemaMeta {
|
|
1295
|
-
}
|
|
1296
|
-
|
|
1297
|
-
type Params<T extends $ZodType | $ZodCheck, IssueTypes extends $ZodIssueBase, OmitKeys extends keyof T["_zod"]["def"] = never> = Flatten<Partial<EmptyToNever<Omit<T["_zod"]["def"], OmitKeys> & ([IssueTypes] extends [never] ? {} : {
|
|
1298
|
-
error?: string | $ZodErrorMap<IssueTypes> | undefined;
|
|
1299
|
-
/** @deprecated This parameter is deprecated. Use `error` instead. */
|
|
1300
|
-
message?: string | undefined;
|
|
1301
|
-
})>>>;
|
|
1302
|
-
type TypeParams<T extends $ZodType = $ZodType & {
|
|
1303
|
-
_isst: never;
|
|
1304
|
-
}, AlsoOmit extends Exclude<keyof T["_zod"]["def"], "type" | "checks" | "error"> = never> = Params<T, NonNullable<T["_zod"]["isst"]>, "type" | "checks" | "error" | AlsoOmit>;
|
|
1305
|
-
type CheckParams<T extends $ZodCheck = $ZodCheck, // & { _issc: never },
|
|
1306
|
-
AlsoOmit extends Exclude<keyof T["_zod"]["def"], "check" | "error"> = never> = Params<T, NonNullable<T["_zod"]["issc"]>, "check" | "error" | AlsoOmit>;
|
|
1307
|
-
type CheckStringFormatParams<T extends $ZodStringFormat = $ZodStringFormat, AlsoOmit extends Exclude<keyof T["_zod"]["def"], "type" | "coerce" | "checks" | "error" | "check" | "format"> = never> = Params<T, NonNullable<T["_zod"]["issc"]>, "type" | "coerce" | "checks" | "error" | "check" | "format" | AlsoOmit>;
|
|
1308
|
-
type CheckTypeParams<T extends $ZodType & $ZodCheck = $ZodType & $ZodCheck, AlsoOmit extends Exclude<keyof T["_zod"]["def"], "type" | "checks" | "error" | "check"> = never> = Params<T, NonNullable<T["_zod"]["isst"] | T["_zod"]["issc"]>, "type" | "checks" | "error" | "check" | AlsoOmit>;
|
|
1309
|
-
type $ZodCheckEmailParams = CheckStringFormatParams<$ZodEmail, "when">;
|
|
1310
|
-
type $ZodCheckGUIDParams = CheckStringFormatParams<$ZodGUID, "pattern" | "when">;
|
|
1311
|
-
type $ZodCheckUUIDParams = CheckStringFormatParams<$ZodUUID, "pattern" | "when">;
|
|
1312
|
-
type $ZodCheckURLParams = CheckStringFormatParams<$ZodURL, "when">;
|
|
1313
|
-
type $ZodCheckEmojiParams = CheckStringFormatParams<$ZodEmoji, "when">;
|
|
1314
|
-
type $ZodCheckNanoIDParams = CheckStringFormatParams<$ZodNanoID, "when">;
|
|
1315
|
-
type $ZodCheckCUIDParams = CheckStringFormatParams<$ZodCUID, "when">;
|
|
1316
|
-
type $ZodCheckCUID2Params = CheckStringFormatParams<$ZodCUID2, "when">;
|
|
1317
|
-
type $ZodCheckULIDParams = CheckStringFormatParams<$ZodULID, "when">;
|
|
1318
|
-
type $ZodCheckXIDParams = CheckStringFormatParams<$ZodXID, "when">;
|
|
1319
|
-
type $ZodCheckKSUIDParams = CheckStringFormatParams<$ZodKSUID, "when">;
|
|
1320
|
-
type $ZodCheckIPv4Params = CheckStringFormatParams<$ZodIPv4, "pattern" | "when" | "version">;
|
|
1321
|
-
type $ZodCheckIPv6Params = CheckStringFormatParams<$ZodIPv6, "pattern" | "when" | "version">;
|
|
1322
|
-
type $ZodCheckCIDRv4Params = CheckStringFormatParams<$ZodCIDRv4, "pattern" | "when">;
|
|
1323
|
-
type $ZodCheckCIDRv6Params = CheckStringFormatParams<$ZodCIDRv6, "pattern" | "when">;
|
|
1324
|
-
type $ZodCheckBase64Params = CheckStringFormatParams<$ZodBase64, "pattern" | "when">;
|
|
1325
|
-
type $ZodCheckBase64URLParams = CheckStringFormatParams<$ZodBase64URL, "pattern" | "when">;
|
|
1326
|
-
type $ZodCheckE164Params = CheckStringFormatParams<$ZodE164, "when">;
|
|
1327
|
-
type $ZodCheckJWTParams = CheckStringFormatParams<$ZodJWT, "pattern" | "when">;
|
|
1328
|
-
type $ZodCheckISODateTimeParams = CheckStringFormatParams<$ZodISODateTime, "pattern" | "when">;
|
|
1329
|
-
type $ZodCheckISODateParams = CheckStringFormatParams<$ZodISODate, "pattern" | "when">;
|
|
1330
|
-
type $ZodCheckISOTimeParams = CheckStringFormatParams<$ZodISOTime, "pattern" | "when">;
|
|
1331
|
-
type $ZodCheckISODurationParams = CheckStringFormatParams<$ZodISODuration, "when">;
|
|
1332
|
-
type $ZodCheckNumberFormatParams = CheckParams<$ZodCheckNumberFormat, "format" | "when">;
|
|
1333
|
-
type $ZodCheckLessThanParams = CheckParams<$ZodCheckLessThan, "inclusive" | "value" | "when">;
|
|
1334
|
-
type $ZodCheckGreaterThanParams = CheckParams<$ZodCheckGreaterThan, "inclusive" | "value" | "when">;
|
|
1335
|
-
type $ZodCheckMultipleOfParams = CheckParams<$ZodCheckMultipleOf, "value" | "when">;
|
|
1336
|
-
type $ZodCheckMaxLengthParams = CheckParams<$ZodCheckMaxLength, "maximum" | "when">;
|
|
1337
|
-
type $ZodCheckMinLengthParams = CheckParams<$ZodCheckMinLength, "minimum" | "when">;
|
|
1338
|
-
type $ZodCheckLengthEqualsParams = CheckParams<$ZodCheckLengthEquals, "length" | "when">;
|
|
1339
|
-
type $ZodCheckRegexParams = CheckParams<$ZodCheckRegex, "format" | "pattern" | "when">;
|
|
1340
|
-
type $ZodCheckLowerCaseParams = CheckParams<$ZodCheckLowerCase, "format" | "when">;
|
|
1341
|
-
type $ZodCheckUpperCaseParams = CheckParams<$ZodCheckUpperCase, "format" | "when">;
|
|
1342
|
-
type $ZodCheckIncludesParams = CheckParams<$ZodCheckIncludes, "includes" | "format" | "when" | "pattern">;
|
|
1343
|
-
type $ZodCheckStartsWithParams = CheckParams<$ZodCheckStartsWith, "prefix" | "format" | "when" | "pattern">;
|
|
1344
|
-
type $ZodCheckEndsWithParams = CheckParams<$ZodCheckEndsWith, "suffix" | "format" | "pattern" | "when">;
|
|
1345
|
-
type $ZodEnumParams = TypeParams<$ZodEnum, "entries">;
|
|
1346
|
-
type $ZodNonOptionalParams = TypeParams<$ZodNonOptional, "innerType">;
|
|
1347
|
-
type $ZodCustomParams = CheckTypeParams<$ZodCustom, "fn">;
|
|
1348
|
-
type $ZodSuperRefineIssue<T extends $ZodIssueBase = $ZodIssue> = T extends any ? RawIssue<T> : never;
|
|
1349
|
-
type RawIssue<T extends $ZodIssueBase> = T extends any ? Flatten<MakePartial<T, "message" | "path"> & {
|
|
1350
|
-
/** The schema or check that originated this issue. */
|
|
1351
|
-
readonly inst?: $ZodType | $ZodCheck;
|
|
1352
|
-
/** If `true`, Zod will execute subsequent checks/refinements instead of immediately aborting */
|
|
1353
|
-
readonly continue?: boolean | undefined;
|
|
1354
|
-
} & Record<string, unknown>> : never;
|
|
1355
|
-
interface $RefinementCtx<T = unknown> extends ParsePayload<T> {
|
|
1356
|
-
addIssue(arg: string | $ZodSuperRefineIssue): void;
|
|
1357
|
-
}
|
|
1358
|
-
|
|
1359
|
-
/** An Error-like class used to store Zod validation issues. */
|
|
1360
|
-
interface ZodError<T = unknown> extends $ZodError<T> {
|
|
1361
|
-
/** @deprecated Use the `z.treeifyError(err)` function instead. */
|
|
1362
|
-
format(): $ZodFormattedError<T>;
|
|
1363
|
-
format<U>(mapper: (issue: $ZodIssue) => U): $ZodFormattedError<T, U>;
|
|
1364
|
-
/** @deprecated Use the `z.treeifyError(err)` function instead. */
|
|
1365
|
-
flatten(): $ZodFlattenedError<T>;
|
|
1366
|
-
flatten<U>(mapper: (issue: $ZodIssue) => U): $ZodFlattenedError<T, U>;
|
|
1367
|
-
/** @deprecated Push directly to `.issues` instead. */
|
|
1368
|
-
addIssue(issue: $ZodIssue): void;
|
|
1369
|
-
/** @deprecated Push directly to `.issues` instead. */
|
|
1370
|
-
addIssues(issues: $ZodIssue[]): void;
|
|
1371
|
-
/** @deprecated Check `err.issues.length === 0` instead. */
|
|
1372
|
-
isEmpty: boolean;
|
|
1373
|
-
}
|
|
1374
|
-
declare const ZodError: $constructor<ZodError>;
|
|
1375
|
-
|
|
1376
|
-
type ZodSafeParseResult<T> = ZodSafeParseSuccess<T> | ZodSafeParseError<T>;
|
|
1377
|
-
type ZodSafeParseSuccess<T> = {
|
|
1378
|
-
success: true;
|
|
1379
|
-
data: T;
|
|
1380
|
-
error?: never;
|
|
1381
|
-
};
|
|
1382
|
-
type ZodSafeParseError<T> = {
|
|
1383
|
-
success: false;
|
|
1384
|
-
data?: never;
|
|
1385
|
-
error: ZodError<T>;
|
|
1386
|
-
};
|
|
1387
|
-
|
|
1388
|
-
interface _ZodType<out Internals extends $ZodTypeInternals = $ZodTypeInternals> extends ZodType<any, any, Internals> {
|
|
1389
|
-
}
|
|
1390
|
-
interface ZodType<out Output = unknown, out Input = unknown, out Internals extends $ZodTypeInternals<Output, Input> = $ZodTypeInternals<Output, Input>> extends $ZodType<Output, Input, Internals> {
|
|
1391
|
-
def: Internals["def"];
|
|
1392
|
-
type: Internals["def"]["type"];
|
|
1393
|
-
/** @deprecated Use `.def` instead. */
|
|
1394
|
-
_def: Internals["def"];
|
|
1395
|
-
/** @deprecated Use `z.output<typeof schema>` instead. */
|
|
1396
|
-
_output: Internals["output"];
|
|
1397
|
-
/** @deprecated Use `z.input<typeof schema>` instead. */
|
|
1398
|
-
_input: Internals["input"];
|
|
1399
|
-
check(...checks: (CheckFn<output<this>> | $ZodCheck<output<this>>)[]): this;
|
|
1400
|
-
clone(def?: Internals["def"], params?: {
|
|
1401
|
-
parent: boolean;
|
|
1402
|
-
}): this;
|
|
1403
|
-
register<R extends $ZodRegistry>(registry: R, ...meta: this extends R["_schema"] ? undefined extends R["_meta"] ? [$replace<R["_meta"], this>?] : [$replace<R["_meta"], this>] : ["Incompatible schema"]): this;
|
|
1404
|
-
brand<T extends PropertyKey = PropertyKey>(value?: T): PropertyKey extends T ? this : $ZodBranded<this, T>;
|
|
1405
|
-
parse(data: unknown, params?: ParseContext<$ZodIssue>): output<this>;
|
|
1406
|
-
safeParse(data: unknown, params?: ParseContext<$ZodIssue>): ZodSafeParseResult<output<this>>;
|
|
1407
|
-
parseAsync(data: unknown, params?: ParseContext<$ZodIssue>): Promise<output<this>>;
|
|
1408
|
-
safeParseAsync(data: unknown, params?: ParseContext<$ZodIssue>): Promise<ZodSafeParseResult<output<this>>>;
|
|
1409
|
-
spa: (data: unknown, params?: ParseContext<$ZodIssue>) => Promise<ZodSafeParseResult<output<this>>>;
|
|
1410
|
-
encode(data: output<this>, params?: ParseContext<$ZodIssue>): input<this>;
|
|
1411
|
-
decode(data: input<this>, params?: ParseContext<$ZodIssue>): output<this>;
|
|
1412
|
-
encodeAsync(data: output<this>, params?: ParseContext<$ZodIssue>): Promise<input<this>>;
|
|
1413
|
-
decodeAsync(data: input<this>, params?: ParseContext<$ZodIssue>): Promise<output<this>>;
|
|
1414
|
-
safeEncode(data: output<this>, params?: ParseContext<$ZodIssue>): ZodSafeParseResult<input<this>>;
|
|
1415
|
-
safeDecode(data: input<this>, params?: ParseContext<$ZodIssue>): ZodSafeParseResult<output<this>>;
|
|
1416
|
-
safeEncodeAsync(data: output<this>, params?: ParseContext<$ZodIssue>): Promise<ZodSafeParseResult<input<this>>>;
|
|
1417
|
-
safeDecodeAsync(data: input<this>, params?: ParseContext<$ZodIssue>): Promise<ZodSafeParseResult<output<this>>>;
|
|
1418
|
-
refine(check: (arg: output<this>) => unknown | Promise<unknown>, params?: string | $ZodCustomParams): this;
|
|
1419
|
-
superRefine(refinement: (arg: output<this>, ctx: $RefinementCtx<output<this>>) => void | Promise<void>): this;
|
|
1420
|
-
overwrite(fn: (x: output<this>) => output<this>): this;
|
|
1421
|
-
optional(): ZodOptional<this>;
|
|
1422
|
-
nonoptional(params?: string | $ZodNonOptionalParams): ZodNonOptional<this>;
|
|
1423
|
-
nullable(): ZodNullable<this>;
|
|
1424
|
-
nullish(): ZodOptional<ZodNullable<this>>;
|
|
1425
|
-
default(def: NoUndefined<output<this>>): ZodDefault<this>;
|
|
1426
|
-
default(def: () => NoUndefined<output<this>>): ZodDefault<this>;
|
|
1427
|
-
prefault(def: () => input<this>): ZodPrefault<this>;
|
|
1428
|
-
prefault(def: input<this>): ZodPrefault<this>;
|
|
1429
|
-
array(): ZodArray<this>;
|
|
1430
|
-
or<T extends SomeType>(option: T): ZodUnion<[this, T]>;
|
|
1431
|
-
and<T extends SomeType>(incoming: T): ZodIntersection<this, T>;
|
|
1432
|
-
transform<NewOut>(transform: (arg: output<this>, ctx: $RefinementCtx<output<this>>) => NewOut | Promise<NewOut>): ZodPipe<this, ZodTransform<Awaited<NewOut>, output<this>>>;
|
|
1433
|
-
catch(def: output<this>): ZodCatch<this>;
|
|
1434
|
-
catch(def: (ctx: $ZodCatchCtx) => output<this>): ZodCatch<this>;
|
|
1435
|
-
pipe<T extends $ZodType<any, output<this>>>(target: T | $ZodType<any, output<this>>): ZodPipe<this, T>;
|
|
1436
|
-
readonly(): ZodReadonly<this>;
|
|
1437
|
-
/** Returns a new instance that has been registered in `z.globalRegistry` with the specified description */
|
|
1438
|
-
describe(description: string): this;
|
|
1439
|
-
description?: string;
|
|
1440
|
-
/** Returns the metadata associated with this instance in `z.globalRegistry` */
|
|
1441
|
-
meta(): $replace<GlobalMeta, this> | undefined;
|
|
1442
|
-
/** Returns a new instance that has been registered in `z.globalRegistry` with the specified metadata */
|
|
1443
|
-
meta(data: $replace<GlobalMeta, this>): this;
|
|
1444
|
-
/** @deprecated Try safe-parsing `undefined` (this is what `isOptional` does internally):
|
|
1445
|
-
*
|
|
1446
|
-
* ```ts
|
|
1447
|
-
* const schema = z.string().optional();
|
|
1448
|
-
* const isOptional = schema.safeParse(undefined).success; // true
|
|
1449
|
-
* ```
|
|
1450
|
-
*/
|
|
1451
|
-
isOptional(): boolean;
|
|
1452
|
-
/**
|
|
1453
|
-
* @deprecated Try safe-parsing `null` (this is what `isNullable` does internally):
|
|
1454
|
-
*
|
|
1455
|
-
* ```ts
|
|
1456
|
-
* const schema = z.string().nullable();
|
|
1457
|
-
* const isNullable = schema.safeParse(null).success; // true
|
|
1458
|
-
* ```
|
|
1459
|
-
*/
|
|
1460
|
-
isNullable(): boolean;
|
|
1461
|
-
}
|
|
1462
|
-
declare const ZodType: $constructor<ZodType>;
|
|
1463
|
-
interface _ZodString<T extends $ZodStringInternals<unknown> = $ZodStringInternals<unknown>> extends _ZodType<T> {
|
|
1464
|
-
format: string | null;
|
|
1465
|
-
minLength: number | null;
|
|
1466
|
-
maxLength: number | null;
|
|
1467
|
-
regex(regex: RegExp, params?: string | $ZodCheckRegexParams): this;
|
|
1468
|
-
includes(value: string, params?: $ZodCheckIncludesParams): this;
|
|
1469
|
-
startsWith(value: string, params?: string | $ZodCheckStartsWithParams): this;
|
|
1470
|
-
endsWith(value: string, params?: string | $ZodCheckEndsWithParams): this;
|
|
1471
|
-
min(minLength: number, params?: string | $ZodCheckMinLengthParams): this;
|
|
1472
|
-
max(maxLength: number, params?: string | $ZodCheckMaxLengthParams): this;
|
|
1473
|
-
length(len: number, params?: string | $ZodCheckLengthEqualsParams): this;
|
|
1474
|
-
nonempty(params?: string | $ZodCheckMinLengthParams): this;
|
|
1475
|
-
lowercase(params?: string | $ZodCheckLowerCaseParams): this;
|
|
1476
|
-
uppercase(params?: string | $ZodCheckUpperCaseParams): this;
|
|
1477
|
-
trim(): this;
|
|
1478
|
-
normalize(form?: "NFC" | "NFD" | "NFKC" | "NFKD" | (string & {})): this;
|
|
1479
|
-
toLowerCase(): this;
|
|
1480
|
-
toUpperCase(): this;
|
|
1481
|
-
slugify(): this;
|
|
1482
|
-
}
|
|
1483
|
-
/** @internal */
|
|
1484
|
-
declare const _ZodString: $constructor<_ZodString>;
|
|
1485
|
-
interface ZodString extends _ZodString<$ZodStringInternals<string>> {
|
|
1486
|
-
/** @deprecated Use `z.email()` instead. */
|
|
1487
|
-
email(params?: string | $ZodCheckEmailParams): this;
|
|
1488
|
-
/** @deprecated Use `z.url()` instead. */
|
|
1489
|
-
url(params?: string | $ZodCheckURLParams): this;
|
|
1490
|
-
/** @deprecated Use `z.jwt()` instead. */
|
|
1491
|
-
jwt(params?: string | $ZodCheckJWTParams): this;
|
|
1492
|
-
/** @deprecated Use `z.emoji()` instead. */
|
|
1493
|
-
emoji(params?: string | $ZodCheckEmojiParams): this;
|
|
1494
|
-
/** @deprecated Use `z.guid()` instead. */
|
|
1495
|
-
guid(params?: string | $ZodCheckGUIDParams): this;
|
|
1496
|
-
/** @deprecated Use `z.uuid()` instead. */
|
|
1497
|
-
uuid(params?: string | $ZodCheckUUIDParams): this;
|
|
1498
|
-
/** @deprecated Use `z.uuid()` instead. */
|
|
1499
|
-
uuidv4(params?: string | $ZodCheckUUIDParams): this;
|
|
1500
|
-
/** @deprecated Use `z.uuid()` instead. */
|
|
1501
|
-
uuidv6(params?: string | $ZodCheckUUIDParams): this;
|
|
1502
|
-
/** @deprecated Use `z.uuid()` instead. */
|
|
1503
|
-
uuidv7(params?: string | $ZodCheckUUIDParams): this;
|
|
1504
|
-
/** @deprecated Use `z.nanoid()` instead. */
|
|
1505
|
-
nanoid(params?: string | $ZodCheckNanoIDParams): this;
|
|
1506
|
-
/** @deprecated Use `z.guid()` instead. */
|
|
1507
|
-
guid(params?: string | $ZodCheckGUIDParams): this;
|
|
1508
|
-
/** @deprecated Use `z.cuid()` instead. */
|
|
1509
|
-
cuid(params?: string | $ZodCheckCUIDParams): this;
|
|
1510
|
-
/** @deprecated Use `z.cuid2()` instead. */
|
|
1511
|
-
cuid2(params?: string | $ZodCheckCUID2Params): this;
|
|
1512
|
-
/** @deprecated Use `z.ulid()` instead. */
|
|
1513
|
-
ulid(params?: string | $ZodCheckULIDParams): this;
|
|
1514
|
-
/** @deprecated Use `z.base64()` instead. */
|
|
1515
|
-
base64(params?: string | $ZodCheckBase64Params): this;
|
|
1516
|
-
/** @deprecated Use `z.base64url()` instead. */
|
|
1517
|
-
base64url(params?: string | $ZodCheckBase64URLParams): this;
|
|
1518
|
-
/** @deprecated Use `z.xid()` instead. */
|
|
1519
|
-
xid(params?: string | $ZodCheckXIDParams): this;
|
|
1520
|
-
/** @deprecated Use `z.ksuid()` instead. */
|
|
1521
|
-
ksuid(params?: string | $ZodCheckKSUIDParams): this;
|
|
1522
|
-
/** @deprecated Use `z.ipv4()` instead. */
|
|
1523
|
-
ipv4(params?: string | $ZodCheckIPv4Params): this;
|
|
1524
|
-
/** @deprecated Use `z.ipv6()` instead. */
|
|
1525
|
-
ipv6(params?: string | $ZodCheckIPv6Params): this;
|
|
1526
|
-
/** @deprecated Use `z.cidrv4()` instead. */
|
|
1527
|
-
cidrv4(params?: string | $ZodCheckCIDRv4Params): this;
|
|
1528
|
-
/** @deprecated Use `z.cidrv6()` instead. */
|
|
1529
|
-
cidrv6(params?: string | $ZodCheckCIDRv6Params): this;
|
|
1530
|
-
/** @deprecated Use `z.e164()` instead. */
|
|
1531
|
-
e164(params?: string | $ZodCheckE164Params): this;
|
|
1532
|
-
/** @deprecated Use `z.iso.datetime()` instead. */
|
|
1533
|
-
datetime(params?: string | $ZodCheckISODateTimeParams): this;
|
|
1534
|
-
/** @deprecated Use `z.iso.date()` instead. */
|
|
1535
|
-
date(params?: string | $ZodCheckISODateParams): this;
|
|
1536
|
-
/** @deprecated Use `z.iso.time()` instead. */
|
|
1537
|
-
time(params?: string | $ZodCheckISOTimeParams): this;
|
|
1538
|
-
/** @deprecated Use `z.iso.duration()` instead. */
|
|
1539
|
-
duration(params?: string | $ZodCheckISODurationParams): this;
|
|
1540
|
-
}
|
|
1541
|
-
declare const ZodString: $constructor<ZodString>;
|
|
1542
|
-
interface _ZodNumber<Internals extends $ZodNumberInternals = $ZodNumberInternals> extends _ZodType<Internals> {
|
|
1543
|
-
gt(value: number, params?: string | $ZodCheckGreaterThanParams): this;
|
|
1544
|
-
/** Identical to .min() */
|
|
1545
|
-
gte(value: number, params?: string | $ZodCheckGreaterThanParams): this;
|
|
1546
|
-
min(value: number, params?: string | $ZodCheckGreaterThanParams): this;
|
|
1547
|
-
lt(value: number, params?: string | $ZodCheckLessThanParams): this;
|
|
1548
|
-
/** Identical to .max() */
|
|
1549
|
-
lte(value: number, params?: string | $ZodCheckLessThanParams): this;
|
|
1550
|
-
max(value: number, params?: string | $ZodCheckLessThanParams): this;
|
|
1551
|
-
/** Consider `z.int()` instead. This API is considered *legacy*; it will never be removed but a better alternative exists. */
|
|
1552
|
-
int(params?: string | $ZodCheckNumberFormatParams): this;
|
|
1553
|
-
/** @deprecated This is now identical to `.int()`. Only numbers in the safe integer range are accepted. */
|
|
1554
|
-
safe(params?: string | $ZodCheckNumberFormatParams): this;
|
|
1555
|
-
positive(params?: string | $ZodCheckGreaterThanParams): this;
|
|
1556
|
-
nonnegative(params?: string | $ZodCheckGreaterThanParams): this;
|
|
1557
|
-
negative(params?: string | $ZodCheckLessThanParams): this;
|
|
1558
|
-
nonpositive(params?: string | $ZodCheckLessThanParams): this;
|
|
1559
|
-
multipleOf(value: number, params?: string | $ZodCheckMultipleOfParams): this;
|
|
1560
|
-
/** @deprecated Use `.multipleOf()` instead. */
|
|
1561
|
-
step(value: number, params?: string | $ZodCheckMultipleOfParams): this;
|
|
1562
|
-
/** @deprecated In v4 and later, z.number() does not allow infinite values by default. This is a no-op. */
|
|
1563
|
-
finite(params?: unknown): this;
|
|
1564
|
-
minValue: number | null;
|
|
1565
|
-
maxValue: number | null;
|
|
1566
|
-
/** @deprecated Check the `format` property instead. */
|
|
1567
|
-
isInt: boolean;
|
|
1568
|
-
/** @deprecated Number schemas no longer accept infinite values, so this always returns `true`. */
|
|
1569
|
-
isFinite: boolean;
|
|
1570
|
-
format: string | null;
|
|
1571
|
-
}
|
|
1572
|
-
interface ZodNumber extends _ZodNumber<$ZodNumberInternals<number>> {
|
|
1573
|
-
}
|
|
1574
|
-
declare const ZodNumber: $constructor<ZodNumber>;
|
|
1575
|
-
interface ZodNumberFormat extends ZodNumber {
|
|
1576
|
-
_zod: $ZodNumberFormatInternals;
|
|
1577
|
-
}
|
|
1578
|
-
declare const ZodNumberFormat: $constructor<ZodNumberFormat>;
|
|
1579
|
-
interface ZodInt extends ZodNumberFormat {
|
|
1580
|
-
}
|
|
1581
|
-
interface ZodArray<T extends SomeType = $ZodType> extends _ZodType<$ZodArrayInternals<T>>, $ZodArray<T> {
|
|
1582
|
-
element: T;
|
|
1583
|
-
min(minLength: number, params?: string | $ZodCheckMinLengthParams): this;
|
|
1584
|
-
nonempty(params?: string | $ZodCheckMinLengthParams): this;
|
|
1585
|
-
max(maxLength: number, params?: string | $ZodCheckMaxLengthParams): this;
|
|
1586
|
-
length(len: number, params?: string | $ZodCheckLengthEqualsParams): this;
|
|
1587
|
-
unwrap(): T;
|
|
1588
|
-
}
|
|
1589
|
-
declare const ZodArray: $constructor<ZodArray>;
|
|
1590
|
-
type SafeExtendShape<Base extends $ZodShape, Ext extends $ZodLooseShape> = {
|
|
1591
|
-
[K in keyof Ext]: K extends keyof Base ? output<Ext[K]> extends output<Base[K]> ? input<Ext[K]> extends input<Base[K]> ? Ext[K] : never : never : Ext[K];
|
|
1592
|
-
};
|
|
1593
|
-
interface ZodObject<
|
|
1594
|
-
/** @ts-ignore Cast variance */
|
|
1595
|
-
out Shape extends $ZodShape = $ZodLooseShape, out Config extends $ZodObjectConfig = $strip> extends _ZodType<$ZodObjectInternals<Shape, Config>>, $ZodObject<Shape, Config> {
|
|
1596
|
-
shape: Shape;
|
|
1597
|
-
keyof(): ZodEnum<ToEnum<keyof Shape & string>>;
|
|
1598
|
-
/** Define a schema to validate all unrecognized keys. This overrides the existing strict/loose behavior. */
|
|
1599
|
-
catchall<T extends SomeType>(schema: T): ZodObject<Shape, $catchall<T>>;
|
|
1600
|
-
/** @deprecated Use `z.looseObject()` or `.loose()` instead. */
|
|
1601
|
-
passthrough(): ZodObject<Shape, $loose>;
|
|
1602
|
-
/** Consider `z.looseObject(A.shape)` instead */
|
|
1603
|
-
loose(): ZodObject<Shape, $loose>;
|
|
1604
|
-
/** Consider `z.strictObject(A.shape)` instead */
|
|
1605
|
-
strict(): ZodObject<Shape, $strict>;
|
|
1606
|
-
/** This is the default behavior. This method call is likely unnecessary. */
|
|
1607
|
-
strip(): ZodObject<Shape, $strip>;
|
|
1608
|
-
extend<U extends $ZodLooseShape>(shape: U): ZodObject<Extend<Shape, U>, Config>;
|
|
1609
|
-
safeExtend<U extends $ZodLooseShape>(shape: SafeExtendShape<Shape, U> & Partial<Record<keyof Shape, SomeType>>): ZodObject<Extend<Shape, U>, Config>;
|
|
1610
|
-
/**
|
|
1611
|
-
* @deprecated Use [`A.extend(B.shape)`](https://zod.dev/api?id=extend) instead.
|
|
1612
|
-
*/
|
|
1613
|
-
merge<U extends ZodObject>(other: U): ZodObject<Extend<Shape, U["shape"]>, U["_zod"]["config"]>;
|
|
1614
|
-
pick<M extends Mask<keyof Shape>>(mask: M): ZodObject<Flatten<Pick<Shape, Extract<keyof Shape, keyof M>>>, Config>;
|
|
1615
|
-
omit<M extends Mask<keyof Shape>>(mask: M): ZodObject<Flatten<Omit<Shape, Extract<keyof Shape, keyof M>>>, Config>;
|
|
1616
|
-
partial(): ZodObject<{
|
|
1617
|
-
[k in keyof Shape]: ZodOptional<Shape[k]>;
|
|
1618
|
-
}, Config>;
|
|
1619
|
-
partial<M extends Mask<keyof Shape>>(mask: M): ZodObject<{
|
|
1620
|
-
[k in keyof Shape]: k extends keyof M ? ZodOptional<Shape[k]> : Shape[k];
|
|
1621
|
-
}, Config>;
|
|
1622
|
-
required(): ZodObject<{
|
|
1623
|
-
[k in keyof Shape]: ZodNonOptional<Shape[k]>;
|
|
1624
|
-
}, Config>;
|
|
1625
|
-
required<M extends Mask<keyof Shape>>(mask: M): ZodObject<{
|
|
1626
|
-
[k in keyof Shape]: k extends keyof M ? ZodNonOptional<Shape[k]> : Shape[k];
|
|
1627
|
-
}, Config>;
|
|
1628
|
-
}
|
|
1629
|
-
declare const ZodObject: $constructor<ZodObject>;
|
|
1630
|
-
interface ZodUnion<T extends readonly SomeType[] = readonly $ZodType[]> extends _ZodType<$ZodUnionInternals<T>>, $ZodUnion<T> {
|
|
1631
|
-
options: T;
|
|
1632
|
-
}
|
|
1633
|
-
declare const ZodUnion: $constructor<ZodUnion>;
|
|
1634
|
-
interface ZodIntersection<A extends SomeType = $ZodType, B extends SomeType = $ZodType> extends _ZodType<$ZodIntersectionInternals<A, B>>, $ZodIntersection<A, B> {
|
|
1635
|
-
}
|
|
1636
|
-
declare const ZodIntersection: $constructor<ZodIntersection>;
|
|
1637
|
-
interface ZodRecord<Key extends $ZodRecordKey = $ZodRecordKey, Value extends SomeType = $ZodType> extends _ZodType<$ZodRecordInternals<Key, Value>>, $ZodRecord<Key, Value> {
|
|
1638
|
-
keyType: Key;
|
|
1639
|
-
valueType: Value;
|
|
1640
|
-
}
|
|
1641
|
-
declare const ZodRecord: $constructor<ZodRecord>;
|
|
1642
|
-
interface ZodEnum<
|
|
1643
|
-
/** @ts-ignore Cast variance */
|
|
1644
|
-
out T extends EnumLike = EnumLike> extends _ZodType<$ZodEnumInternals<T>>, $ZodEnum<T> {
|
|
1645
|
-
enum: T;
|
|
1646
|
-
options: Array<T[keyof T]>;
|
|
1647
|
-
extract<const U extends readonly (keyof T)[]>(values: U, params?: string | $ZodEnumParams): ZodEnum<Flatten<Pick<T, U[number]>>>;
|
|
1648
|
-
exclude<const U extends readonly (keyof T)[]>(values: U, params?: string | $ZodEnumParams): ZodEnum<Flatten<Omit<T, U[number]>>>;
|
|
1649
|
-
}
|
|
1650
|
-
declare const ZodEnum: $constructor<ZodEnum>;
|
|
1651
|
-
interface ZodLiteral<T extends Literal = Literal> extends _ZodType<$ZodLiteralInternals<T>>, $ZodLiteral<T> {
|
|
1652
|
-
values: Set<T>;
|
|
1653
|
-
/** @legacy Use `.values` instead. Accessing this property will throw an error if the literal accepts multiple values. */
|
|
1654
|
-
value: T;
|
|
1655
|
-
}
|
|
1656
|
-
declare const ZodLiteral: $constructor<ZodLiteral>;
|
|
1657
|
-
interface ZodTransform<O = unknown, I = unknown> extends _ZodType<$ZodTransformInternals<O, I>>, $ZodTransform<O, I> {
|
|
1658
|
-
}
|
|
1659
|
-
declare const ZodTransform: $constructor<ZodTransform>;
|
|
1660
|
-
interface ZodOptional<T extends SomeType = $ZodType> extends _ZodType<$ZodOptionalInternals<T>>, $ZodOptional<T> {
|
|
1661
|
-
unwrap(): T;
|
|
1662
|
-
}
|
|
1663
|
-
declare const ZodOptional: $constructor<ZodOptional>;
|
|
1664
|
-
interface ZodNullable<T extends SomeType = $ZodType> extends _ZodType<$ZodNullableInternals<T>>, $ZodNullable<T> {
|
|
1665
|
-
unwrap(): T;
|
|
1666
|
-
}
|
|
1667
|
-
declare const ZodNullable: $constructor<ZodNullable>;
|
|
1668
|
-
interface ZodDefault<T extends SomeType = $ZodType> extends _ZodType<$ZodDefaultInternals<T>>, $ZodDefault<T> {
|
|
1669
|
-
unwrap(): T;
|
|
1670
|
-
/** @deprecated Use `.unwrap()` instead. */
|
|
1671
|
-
removeDefault(): T;
|
|
1672
|
-
}
|
|
1673
|
-
declare const ZodDefault: $constructor<ZodDefault>;
|
|
1674
|
-
interface ZodPrefault<T extends SomeType = $ZodType> extends _ZodType<$ZodPrefaultInternals<T>>, $ZodPrefault<T> {
|
|
1675
|
-
unwrap(): T;
|
|
1676
|
-
}
|
|
1677
|
-
declare const ZodPrefault: $constructor<ZodPrefault>;
|
|
1678
|
-
interface ZodNonOptional<T extends SomeType = $ZodType> extends _ZodType<$ZodNonOptionalInternals<T>>, $ZodNonOptional<T> {
|
|
1679
|
-
unwrap(): T;
|
|
1680
|
-
}
|
|
1681
|
-
declare const ZodNonOptional: $constructor<ZodNonOptional>;
|
|
1682
|
-
interface ZodCatch<T extends SomeType = $ZodType> extends _ZodType<$ZodCatchInternals<T>>, $ZodCatch<T> {
|
|
1683
|
-
unwrap(): T;
|
|
1684
|
-
/** @deprecated Use `.unwrap()` instead. */
|
|
1685
|
-
removeCatch(): T;
|
|
1686
|
-
}
|
|
1687
|
-
declare const ZodCatch: $constructor<ZodCatch>;
|
|
1688
|
-
interface ZodPipe<A extends SomeType = $ZodType, B extends SomeType = $ZodType> extends _ZodType<$ZodPipeInternals<A, B>>, $ZodPipe<A, B> {
|
|
1689
|
-
in: A;
|
|
1690
|
-
out: B;
|
|
1691
|
-
}
|
|
1692
|
-
declare const ZodPipe: $constructor<ZodPipe>;
|
|
1693
|
-
interface ZodReadonly<T extends SomeType = $ZodType> extends _ZodType<$ZodReadonlyInternals<T>>, $ZodReadonly<T> {
|
|
1694
|
-
unwrap(): T;
|
|
1695
|
-
}
|
|
1696
|
-
declare const ZodReadonly: $constructor<ZodReadonly>;
|
|
1697
|
-
|
|
1698
|
-
declare const LikeC4ProjectJsonConfigSchema: ZodObject<{
|
|
1699
|
-
name: ZodString;
|
|
1700
|
-
title: ZodOptional<ZodString>;
|
|
1701
|
-
contactPerson: ZodOptional<ZodString>;
|
|
1702
|
-
imageAliases: ZodOptional<ZodRecord<ZodString, ZodString>>;
|
|
1703
|
-
include: ZodOptional<ZodObject<{
|
|
1704
|
-
paths: ZodArray<ZodString>;
|
|
1705
|
-
maxDepth: ZodDefault<ZodNumber>;
|
|
1706
|
-
fileThreshold: ZodDefault<ZodNumber>;
|
|
1707
|
-
}, $strip>>;
|
|
1708
|
-
styles: ZodOptional<ZodPipe<ZodObject<{
|
|
1709
|
-
theme: ZodOptional<ZodPipe<ZodObject<{
|
|
1710
|
-
colors: ZodOptional<ZodUnion<readonly [ZodRecord<ZodPipe<ZodUnion<readonly [ZodLiteral<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky">, ZodString]>, ZodTransform<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky", string>>, ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
1711
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1712
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1713
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1714
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1715
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1716
|
-
}, $strict>, ZodTransform<_likec4_core.ElementColorValues, {
|
|
1717
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1718
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1719
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1720
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1721
|
-
}>>]>, ZodTransform<_likec4_core.ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.ElementColorValues>>;
|
|
1722
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1723
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1724
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1725
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
1726
|
-
}, $strict>, ZodTransform<_likec4_core.RelationshipColorValues, {
|
|
1727
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1728
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1729
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1730
|
-
}>>]>, ZodTransform<_likec4_core.RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.RelationshipColorValues>>;
|
|
1731
|
-
}, $strict>]>, ZodTransform<_likec4_core.ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
1732
|
-
elements: _likec4_core.ElementColorValues;
|
|
1733
|
-
relationships: _likec4_core.RelationshipColorValues;
|
|
1734
|
-
}>>>, ZodObject<{
|
|
1735
|
-
amber: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
1736
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1737
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1738
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1739
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1740
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1741
|
-
}, $strict>, ZodTransform<_likec4_core.ElementColorValues, {
|
|
1742
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1743
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1744
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1745
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1746
|
-
}>>]>, ZodTransform<_likec4_core.ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.ElementColorValues>>;
|
|
1747
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1748
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1749
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1750
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
1751
|
-
}, $strict>, ZodTransform<_likec4_core.RelationshipColorValues, {
|
|
1752
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1753
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1754
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1755
|
-
}>>]>, ZodTransform<_likec4_core.RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.RelationshipColorValues>>;
|
|
1756
|
-
}, $strict>]>, ZodTransform<_likec4_core.ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
1757
|
-
elements: _likec4_core.ElementColorValues;
|
|
1758
|
-
relationships: _likec4_core.RelationshipColorValues;
|
|
1759
|
-
}>>>;
|
|
1760
|
-
blue: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
1761
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1762
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1763
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1764
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1765
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1766
|
-
}, $strict>, ZodTransform<_likec4_core.ElementColorValues, {
|
|
1767
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1768
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1769
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1770
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1771
|
-
}>>]>, ZodTransform<_likec4_core.ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.ElementColorValues>>;
|
|
1772
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1773
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1774
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1775
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
1776
|
-
}, $strict>, ZodTransform<_likec4_core.RelationshipColorValues, {
|
|
1777
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1778
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1779
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1780
|
-
}>>]>, ZodTransform<_likec4_core.RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.RelationshipColorValues>>;
|
|
1781
|
-
}, $strict>]>, ZodTransform<_likec4_core.ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
1782
|
-
elements: _likec4_core.ElementColorValues;
|
|
1783
|
-
relationships: _likec4_core.RelationshipColorValues;
|
|
1784
|
-
}>>>;
|
|
1785
|
-
gray: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
1786
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1787
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1788
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1789
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1790
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1791
|
-
}, $strict>, ZodTransform<_likec4_core.ElementColorValues, {
|
|
1792
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1793
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1794
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1795
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1796
|
-
}>>]>, ZodTransform<_likec4_core.ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.ElementColorValues>>;
|
|
1797
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1798
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1799
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1800
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
1801
|
-
}, $strict>, ZodTransform<_likec4_core.RelationshipColorValues, {
|
|
1802
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1803
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1804
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1805
|
-
}>>]>, ZodTransform<_likec4_core.RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.RelationshipColorValues>>;
|
|
1806
|
-
}, $strict>]>, ZodTransform<_likec4_core.ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
1807
|
-
elements: _likec4_core.ElementColorValues;
|
|
1808
|
-
relationships: _likec4_core.RelationshipColorValues;
|
|
1809
|
-
}>>>;
|
|
1810
|
-
slate: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
1811
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1812
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1813
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1814
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1815
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1816
|
-
}, $strict>, ZodTransform<_likec4_core.ElementColorValues, {
|
|
1817
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1818
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1819
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1820
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1821
|
-
}>>]>, ZodTransform<_likec4_core.ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.ElementColorValues>>;
|
|
1822
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1823
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1824
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1825
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
1826
|
-
}, $strict>, ZodTransform<_likec4_core.RelationshipColorValues, {
|
|
1827
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1828
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1829
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1830
|
-
}>>]>, ZodTransform<_likec4_core.RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.RelationshipColorValues>>;
|
|
1831
|
-
}, $strict>]>, ZodTransform<_likec4_core.ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
1832
|
-
elements: _likec4_core.ElementColorValues;
|
|
1833
|
-
relationships: _likec4_core.RelationshipColorValues;
|
|
1834
|
-
}>>>;
|
|
1835
|
-
green: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
1836
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1837
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1838
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1839
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1840
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1841
|
-
}, $strict>, ZodTransform<_likec4_core.ElementColorValues, {
|
|
1842
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1843
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1844
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1845
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1846
|
-
}>>]>, ZodTransform<_likec4_core.ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.ElementColorValues>>;
|
|
1847
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1848
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1849
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1850
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
1851
|
-
}, $strict>, ZodTransform<_likec4_core.RelationshipColorValues, {
|
|
1852
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1853
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1854
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1855
|
-
}>>]>, ZodTransform<_likec4_core.RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.RelationshipColorValues>>;
|
|
1856
|
-
}, $strict>]>, ZodTransform<_likec4_core.ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
1857
|
-
elements: _likec4_core.ElementColorValues;
|
|
1858
|
-
relationships: _likec4_core.RelationshipColorValues;
|
|
1859
|
-
}>>>;
|
|
1860
|
-
indigo: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
1861
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1862
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1863
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1864
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1865
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1866
|
-
}, $strict>, ZodTransform<_likec4_core.ElementColorValues, {
|
|
1867
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1868
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1869
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1870
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1871
|
-
}>>]>, ZodTransform<_likec4_core.ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.ElementColorValues>>;
|
|
1872
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1873
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1874
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1875
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
1876
|
-
}, $strict>, ZodTransform<_likec4_core.RelationshipColorValues, {
|
|
1877
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1878
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1879
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1880
|
-
}>>]>, ZodTransform<_likec4_core.RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.RelationshipColorValues>>;
|
|
1881
|
-
}, $strict>]>, ZodTransform<_likec4_core.ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
1882
|
-
elements: _likec4_core.ElementColorValues;
|
|
1883
|
-
relationships: _likec4_core.RelationshipColorValues;
|
|
1884
|
-
}>>>;
|
|
1885
|
-
muted: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
1886
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1887
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1888
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1889
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1890
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1891
|
-
}, $strict>, ZodTransform<_likec4_core.ElementColorValues, {
|
|
1892
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1893
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1894
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1895
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1896
|
-
}>>]>, ZodTransform<_likec4_core.ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.ElementColorValues>>;
|
|
1897
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1898
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1899
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1900
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
1901
|
-
}, $strict>, ZodTransform<_likec4_core.RelationshipColorValues, {
|
|
1902
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1903
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1904
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1905
|
-
}>>]>, ZodTransform<_likec4_core.RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.RelationshipColorValues>>;
|
|
1906
|
-
}, $strict>]>, ZodTransform<_likec4_core.ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
1907
|
-
elements: _likec4_core.ElementColorValues;
|
|
1908
|
-
relationships: _likec4_core.RelationshipColorValues;
|
|
1909
|
-
}>>>;
|
|
1910
|
-
primary: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
1911
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1912
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1913
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1914
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1915
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1916
|
-
}, $strict>, ZodTransform<_likec4_core.ElementColorValues, {
|
|
1917
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1918
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1919
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1920
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1921
|
-
}>>]>, ZodTransform<_likec4_core.ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.ElementColorValues>>;
|
|
1922
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1923
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1924
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1925
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
1926
|
-
}, $strict>, ZodTransform<_likec4_core.RelationshipColorValues, {
|
|
1927
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1928
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1929
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1930
|
-
}>>]>, ZodTransform<_likec4_core.RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.RelationshipColorValues>>;
|
|
1931
|
-
}, $strict>]>, ZodTransform<_likec4_core.ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
1932
|
-
elements: _likec4_core.ElementColorValues;
|
|
1933
|
-
relationships: _likec4_core.RelationshipColorValues;
|
|
1934
|
-
}>>>;
|
|
1935
|
-
red: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
1936
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1937
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1938
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1939
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1940
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1941
|
-
}, $strict>, ZodTransform<_likec4_core.ElementColorValues, {
|
|
1942
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1943
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1944
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1945
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1946
|
-
}>>]>, ZodTransform<_likec4_core.ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.ElementColorValues>>;
|
|
1947
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1948
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1949
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1950
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
1951
|
-
}, $strict>, ZodTransform<_likec4_core.RelationshipColorValues, {
|
|
1952
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1953
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1954
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1955
|
-
}>>]>, ZodTransform<_likec4_core.RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.RelationshipColorValues>>;
|
|
1956
|
-
}, $strict>]>, ZodTransform<_likec4_core.ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
1957
|
-
elements: _likec4_core.ElementColorValues;
|
|
1958
|
-
relationships: _likec4_core.RelationshipColorValues;
|
|
1959
|
-
}>>>;
|
|
1960
|
-
secondary: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
1961
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1962
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1963
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1964
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1965
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1966
|
-
}, $strict>, ZodTransform<_likec4_core.ElementColorValues, {
|
|
1967
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1968
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1969
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1970
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1971
|
-
}>>]>, ZodTransform<_likec4_core.ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.ElementColorValues>>;
|
|
1972
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1973
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1974
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1975
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
1976
|
-
}, $strict>, ZodTransform<_likec4_core.RelationshipColorValues, {
|
|
1977
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1978
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1979
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1980
|
-
}>>]>, ZodTransform<_likec4_core.RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.RelationshipColorValues>>;
|
|
1981
|
-
}, $strict>]>, ZodTransform<_likec4_core.ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
1982
|
-
elements: _likec4_core.ElementColorValues;
|
|
1983
|
-
relationships: _likec4_core.RelationshipColorValues;
|
|
1984
|
-
}>>>;
|
|
1985
|
-
sky: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
1986
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1987
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1988
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1989
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1990
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1991
|
-
}, $strict>, ZodTransform<_likec4_core.ElementColorValues, {
|
|
1992
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1993
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1994
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1995
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
1996
|
-
}>>]>, ZodTransform<_likec4_core.ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.ElementColorValues>>;
|
|
1997
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
1998
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
1999
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2000
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
2001
|
-
}, $strict>, ZodTransform<_likec4_core.RelationshipColorValues, {
|
|
2002
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2003
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2004
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2005
|
-
}>>]>, ZodTransform<_likec4_core.RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | _likec4_core.RelationshipColorValues>>;
|
|
2006
|
-
}, $strict>]>, ZodTransform<_likec4_core.ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
2007
|
-
elements: _likec4_core.ElementColorValues;
|
|
2008
|
-
relationships: _likec4_core.RelationshipColorValues;
|
|
2009
|
-
}>>>;
|
|
2010
|
-
}, $strip>]>>;
|
|
2011
|
-
sizes: ZodOptional<ZodObject<{
|
|
2012
|
-
xs: ZodOptional<ZodObject<{
|
|
2013
|
-
width: ZodNumber;
|
|
2014
|
-
height: ZodNumber;
|
|
2015
|
-
}, $strict>>;
|
|
2016
|
-
sm: ZodOptional<ZodObject<{
|
|
2017
|
-
width: ZodNumber;
|
|
2018
|
-
height: ZodNumber;
|
|
2019
|
-
}, $strict>>;
|
|
2020
|
-
md: ZodOptional<ZodObject<{
|
|
2021
|
-
width: ZodNumber;
|
|
2022
|
-
height: ZodNumber;
|
|
2023
|
-
}, $strict>>;
|
|
2024
|
-
lg: ZodOptional<ZodObject<{
|
|
2025
|
-
width: ZodNumber;
|
|
2026
|
-
height: ZodNumber;
|
|
2027
|
-
}, $strict>>;
|
|
2028
|
-
xl: ZodOptional<ZodObject<{
|
|
2029
|
-
width: ZodNumber;
|
|
2030
|
-
height: ZodNumber;
|
|
2031
|
-
}, $strict>>;
|
|
2032
|
-
}, $strict>>;
|
|
2033
|
-
}, $strict>, ZodTransform<{
|
|
2034
|
-
colors?: {
|
|
2035
|
-
amber?: {
|
|
2036
|
-
elements?: {
|
|
2037
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2038
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2039
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2040
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2041
|
-
};
|
|
2042
|
-
relationships?: {
|
|
2043
|
-
line?: _likec4_core.ColorLiteral;
|
|
2044
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2045
|
-
label?: _likec4_core.ColorLiteral;
|
|
2046
|
-
};
|
|
2047
|
-
};
|
|
2048
|
-
blue?: {
|
|
2049
|
-
elements?: {
|
|
2050
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2051
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2052
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2053
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2054
|
-
};
|
|
2055
|
-
relationships?: {
|
|
2056
|
-
line?: _likec4_core.ColorLiteral;
|
|
2057
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2058
|
-
label?: _likec4_core.ColorLiteral;
|
|
2059
|
-
};
|
|
2060
|
-
};
|
|
2061
|
-
gray?: {
|
|
2062
|
-
elements?: {
|
|
2063
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2064
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2065
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2066
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2067
|
-
};
|
|
2068
|
-
relationships?: {
|
|
2069
|
-
line?: _likec4_core.ColorLiteral;
|
|
2070
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2071
|
-
label?: _likec4_core.ColorLiteral;
|
|
2072
|
-
};
|
|
2073
|
-
};
|
|
2074
|
-
slate?: {
|
|
2075
|
-
elements?: {
|
|
2076
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2077
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2078
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2079
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2080
|
-
};
|
|
2081
|
-
relationships?: {
|
|
2082
|
-
line?: _likec4_core.ColorLiteral;
|
|
2083
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2084
|
-
label?: _likec4_core.ColorLiteral;
|
|
2085
|
-
};
|
|
2086
|
-
};
|
|
2087
|
-
green?: {
|
|
2088
|
-
elements?: {
|
|
2089
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2090
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2091
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2092
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2093
|
-
};
|
|
2094
|
-
relationships?: {
|
|
2095
|
-
line?: _likec4_core.ColorLiteral;
|
|
2096
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2097
|
-
label?: _likec4_core.ColorLiteral;
|
|
2098
|
-
};
|
|
2099
|
-
};
|
|
2100
|
-
indigo?: {
|
|
2101
|
-
elements?: {
|
|
2102
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2103
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2104
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2105
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2106
|
-
};
|
|
2107
|
-
relationships?: {
|
|
2108
|
-
line?: _likec4_core.ColorLiteral;
|
|
2109
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2110
|
-
label?: _likec4_core.ColorLiteral;
|
|
2111
|
-
};
|
|
2112
|
-
};
|
|
2113
|
-
muted?: {
|
|
2114
|
-
elements?: {
|
|
2115
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2116
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2117
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2118
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2119
|
-
};
|
|
2120
|
-
relationships?: {
|
|
2121
|
-
line?: _likec4_core.ColorLiteral;
|
|
2122
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2123
|
-
label?: _likec4_core.ColorLiteral;
|
|
2124
|
-
};
|
|
2125
|
-
};
|
|
2126
|
-
primary?: {
|
|
2127
|
-
elements?: {
|
|
2128
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2129
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2130
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2131
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2132
|
-
};
|
|
2133
|
-
relationships?: {
|
|
2134
|
-
line?: _likec4_core.ColorLiteral;
|
|
2135
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2136
|
-
label?: _likec4_core.ColorLiteral;
|
|
2137
|
-
};
|
|
2138
|
-
};
|
|
2139
|
-
red?: {
|
|
2140
|
-
elements?: {
|
|
2141
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2142
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2143
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2144
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2145
|
-
};
|
|
2146
|
-
relationships?: {
|
|
2147
|
-
line?: _likec4_core.ColorLiteral;
|
|
2148
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2149
|
-
label?: _likec4_core.ColorLiteral;
|
|
2150
|
-
};
|
|
2151
|
-
};
|
|
2152
|
-
secondary?: {
|
|
2153
|
-
elements?: {
|
|
2154
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2155
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2156
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2157
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2158
|
-
};
|
|
2159
|
-
relationships?: {
|
|
2160
|
-
line?: _likec4_core.ColorLiteral;
|
|
2161
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2162
|
-
label?: _likec4_core.ColorLiteral;
|
|
2163
|
-
};
|
|
2164
|
-
};
|
|
2165
|
-
sky?: {
|
|
2166
|
-
elements?: {
|
|
2167
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2168
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2169
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2170
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2171
|
-
};
|
|
2172
|
-
relationships?: {
|
|
2173
|
-
line?: _likec4_core.ColorLiteral;
|
|
2174
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2175
|
-
label?: _likec4_core.ColorLiteral;
|
|
2176
|
-
};
|
|
2177
|
-
};
|
|
2178
|
-
};
|
|
2179
|
-
sizes?: {
|
|
2180
|
-
xs?: {
|
|
2181
|
-
width?: number;
|
|
2182
|
-
height?: number;
|
|
2183
|
-
};
|
|
2184
|
-
sm?: {
|
|
2185
|
-
width?: number;
|
|
2186
|
-
height?: number;
|
|
2187
|
-
};
|
|
2188
|
-
md?: {
|
|
2189
|
-
width?: number;
|
|
2190
|
-
height?: number;
|
|
2191
|
-
};
|
|
2192
|
-
lg?: {
|
|
2193
|
-
width?: number;
|
|
2194
|
-
height?: number;
|
|
2195
|
-
};
|
|
2196
|
-
xl?: {
|
|
2197
|
-
width?: number;
|
|
2198
|
-
height?: number;
|
|
2199
|
-
};
|
|
2200
|
-
};
|
|
2201
|
-
spacing?: {
|
|
2202
|
-
xs?: number;
|
|
2203
|
-
sm?: number;
|
|
2204
|
-
md?: number;
|
|
2205
|
-
lg?: number;
|
|
2206
|
-
xl?: number;
|
|
2207
|
-
};
|
|
2208
|
-
textSizes?: {
|
|
2209
|
-
xs?: number;
|
|
2210
|
-
sm?: number;
|
|
2211
|
-
md?: number;
|
|
2212
|
-
lg?: number;
|
|
2213
|
-
xl?: number;
|
|
2214
|
-
};
|
|
2215
|
-
}, {
|
|
2216
|
-
colors?: Record<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky", _likec4_core.ThemeColorValues> | {
|
|
2217
|
-
amber?: _likec4_core.ThemeColorValues | undefined;
|
|
2218
|
-
blue?: _likec4_core.ThemeColorValues | undefined;
|
|
2219
|
-
gray?: _likec4_core.ThemeColorValues | undefined;
|
|
2220
|
-
slate?: _likec4_core.ThemeColorValues | undefined;
|
|
2221
|
-
green?: _likec4_core.ThemeColorValues | undefined;
|
|
2222
|
-
indigo?: _likec4_core.ThemeColorValues | undefined;
|
|
2223
|
-
muted?: _likec4_core.ThemeColorValues | undefined;
|
|
2224
|
-
primary?: _likec4_core.ThemeColorValues | undefined;
|
|
2225
|
-
red?: _likec4_core.ThemeColorValues | undefined;
|
|
2226
|
-
secondary?: _likec4_core.ThemeColorValues | undefined;
|
|
2227
|
-
sky?: _likec4_core.ThemeColorValues | undefined;
|
|
2228
|
-
} | undefined;
|
|
2229
|
-
sizes?: {
|
|
2230
|
-
xs?: {
|
|
2231
|
-
width: number;
|
|
2232
|
-
height: number;
|
|
2233
|
-
} | undefined;
|
|
2234
|
-
sm?: {
|
|
2235
|
-
width: number;
|
|
2236
|
-
height: number;
|
|
2237
|
-
} | undefined;
|
|
2238
|
-
md?: {
|
|
2239
|
-
width: number;
|
|
2240
|
-
height: number;
|
|
2241
|
-
} | undefined;
|
|
2242
|
-
lg?: {
|
|
2243
|
-
width: number;
|
|
2244
|
-
height: number;
|
|
2245
|
-
} | undefined;
|
|
2246
|
-
xl?: {
|
|
2247
|
-
width: number;
|
|
2248
|
-
height: number;
|
|
2249
|
-
} | undefined;
|
|
2250
|
-
} | undefined;
|
|
2251
|
-
}>>>;
|
|
2252
|
-
defaults: ZodOptional<ZodObject<{
|
|
2253
|
-
color: ZodOptional<ZodPipe<ZodUnion<readonly [ZodLiteral<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky">, ZodString]>, ZodTransform<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky", string>>>;
|
|
2254
|
-
opacity: ZodOptional<ZodInt>;
|
|
2255
|
-
border: ZodOptional<ZodLiteral<"none" | "solid" | "dashed" | "dotted">>;
|
|
2256
|
-
size: ZodOptional<ZodLiteral<"xs" | "sm" | "md" | "lg" | "xl">>;
|
|
2257
|
-
shape: ZodOptional<ZodLiteral<"rectangle" | "person" | "browser" | "mobile" | "cylinder" | "storage" | "queue">>;
|
|
2258
|
-
group: ZodOptional<ZodObject<{
|
|
2259
|
-
color: ZodOptional<ZodPipe<ZodUnion<readonly [ZodLiteral<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky">, ZodString]>, ZodTransform<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky", string>>>;
|
|
2260
|
-
opacity: ZodOptional<ZodInt>;
|
|
2261
|
-
border: ZodOptional<ZodLiteral<"none" | "solid" | "dashed" | "dotted">>;
|
|
2262
|
-
}, $strict>>;
|
|
2263
|
-
relationship: ZodOptional<ZodObject<{
|
|
2264
|
-
color: ZodOptional<ZodPipe<ZodUnion<readonly [ZodLiteral<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky">, ZodString]>, ZodTransform<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky", string>>>;
|
|
2265
|
-
line: ZodOptional<ZodLiteral<"solid" | "dashed" | "dotted">>;
|
|
2266
|
-
arrow: ZodOptional<ZodLiteral<"none" | "normal" | "onormal" | "dot" | "odot" | "diamond" | "odiamond" | "crow" | "open" | "vee">>;
|
|
2267
|
-
}, $strict>>;
|
|
2268
|
-
}, $strict>>;
|
|
2269
|
-
}, $strict>, ZodTransform<_likec4_core.LikeC4ProjectStylesConfig, {
|
|
2270
|
-
theme?: {
|
|
2271
|
-
colors?: {
|
|
2272
|
-
amber?: {
|
|
2273
|
-
elements?: {
|
|
2274
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2275
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2276
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2277
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2278
|
-
};
|
|
2279
|
-
relationships?: {
|
|
2280
|
-
line?: _likec4_core.ColorLiteral;
|
|
2281
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2282
|
-
label?: _likec4_core.ColorLiteral;
|
|
2283
|
-
};
|
|
2284
|
-
};
|
|
2285
|
-
blue?: {
|
|
2286
|
-
elements?: {
|
|
2287
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2288
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2289
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2290
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2291
|
-
};
|
|
2292
|
-
relationships?: {
|
|
2293
|
-
line?: _likec4_core.ColorLiteral;
|
|
2294
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2295
|
-
label?: _likec4_core.ColorLiteral;
|
|
2296
|
-
};
|
|
2297
|
-
};
|
|
2298
|
-
gray?: {
|
|
2299
|
-
elements?: {
|
|
2300
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2301
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2302
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2303
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2304
|
-
};
|
|
2305
|
-
relationships?: {
|
|
2306
|
-
line?: _likec4_core.ColorLiteral;
|
|
2307
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2308
|
-
label?: _likec4_core.ColorLiteral;
|
|
2309
|
-
};
|
|
2310
|
-
};
|
|
2311
|
-
slate?: {
|
|
2312
|
-
elements?: {
|
|
2313
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2314
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2315
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2316
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2317
|
-
};
|
|
2318
|
-
relationships?: {
|
|
2319
|
-
line?: _likec4_core.ColorLiteral;
|
|
2320
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2321
|
-
label?: _likec4_core.ColorLiteral;
|
|
2322
|
-
};
|
|
2323
|
-
};
|
|
2324
|
-
green?: {
|
|
2325
|
-
elements?: {
|
|
2326
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2327
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2328
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2329
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2330
|
-
};
|
|
2331
|
-
relationships?: {
|
|
2332
|
-
line?: _likec4_core.ColorLiteral;
|
|
2333
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2334
|
-
label?: _likec4_core.ColorLiteral;
|
|
2335
|
-
};
|
|
2336
|
-
};
|
|
2337
|
-
indigo?: {
|
|
2338
|
-
elements?: {
|
|
2339
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2340
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2341
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2342
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2343
|
-
};
|
|
2344
|
-
relationships?: {
|
|
2345
|
-
line?: _likec4_core.ColorLiteral;
|
|
2346
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2347
|
-
label?: _likec4_core.ColorLiteral;
|
|
2348
|
-
};
|
|
2349
|
-
};
|
|
2350
|
-
muted?: {
|
|
2351
|
-
elements?: {
|
|
2352
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2353
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2354
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2355
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2356
|
-
};
|
|
2357
|
-
relationships?: {
|
|
2358
|
-
line?: _likec4_core.ColorLiteral;
|
|
2359
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2360
|
-
label?: _likec4_core.ColorLiteral;
|
|
2361
|
-
};
|
|
2362
|
-
};
|
|
2363
|
-
primary?: {
|
|
2364
|
-
elements?: {
|
|
2365
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2366
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2367
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2368
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2369
|
-
};
|
|
2370
|
-
relationships?: {
|
|
2371
|
-
line?: _likec4_core.ColorLiteral;
|
|
2372
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2373
|
-
label?: _likec4_core.ColorLiteral;
|
|
2374
|
-
};
|
|
2375
|
-
};
|
|
2376
|
-
red?: {
|
|
2377
|
-
elements?: {
|
|
2378
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2379
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2380
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2381
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2382
|
-
};
|
|
2383
|
-
relationships?: {
|
|
2384
|
-
line?: _likec4_core.ColorLiteral;
|
|
2385
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2386
|
-
label?: _likec4_core.ColorLiteral;
|
|
2387
|
-
};
|
|
2388
|
-
};
|
|
2389
|
-
secondary?: {
|
|
2390
|
-
elements?: {
|
|
2391
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2392
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2393
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2394
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2395
|
-
};
|
|
2396
|
-
relationships?: {
|
|
2397
|
-
line?: _likec4_core.ColorLiteral;
|
|
2398
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2399
|
-
label?: _likec4_core.ColorLiteral;
|
|
2400
|
-
};
|
|
2401
|
-
};
|
|
2402
|
-
sky?: {
|
|
2403
|
-
elements?: {
|
|
2404
|
-
fill?: _likec4_core.ColorLiteral;
|
|
2405
|
-
stroke?: _likec4_core.ColorLiteral;
|
|
2406
|
-
hiContrast?: _likec4_core.ColorLiteral;
|
|
2407
|
-
loContrast?: _likec4_core.ColorLiteral;
|
|
2408
|
-
};
|
|
2409
|
-
relationships?: {
|
|
2410
|
-
line?: _likec4_core.ColorLiteral;
|
|
2411
|
-
labelBg?: _likec4_core.ColorLiteral;
|
|
2412
|
-
label?: _likec4_core.ColorLiteral;
|
|
2413
|
-
};
|
|
2414
|
-
};
|
|
2415
|
-
};
|
|
2416
|
-
sizes?: {
|
|
2417
|
-
xs?: {
|
|
2418
|
-
width?: number;
|
|
2419
|
-
height?: number;
|
|
2420
|
-
};
|
|
2421
|
-
sm?: {
|
|
2422
|
-
width?: number;
|
|
2423
|
-
height?: number;
|
|
2424
|
-
};
|
|
2425
|
-
md?: {
|
|
2426
|
-
width?: number;
|
|
2427
|
-
height?: number;
|
|
2428
|
-
};
|
|
2429
|
-
lg?: {
|
|
2430
|
-
width?: number;
|
|
2431
|
-
height?: number;
|
|
2432
|
-
};
|
|
2433
|
-
xl?: {
|
|
2434
|
-
width?: number;
|
|
2435
|
-
height?: number;
|
|
2436
|
-
};
|
|
2437
|
-
};
|
|
2438
|
-
spacing?: {
|
|
2439
|
-
xs?: number;
|
|
2440
|
-
sm?: number;
|
|
2441
|
-
md?: number;
|
|
2442
|
-
lg?: number;
|
|
2443
|
-
xl?: number;
|
|
2444
|
-
};
|
|
2445
|
-
textSizes?: {
|
|
2446
|
-
xs?: number;
|
|
2447
|
-
sm?: number;
|
|
2448
|
-
md?: number;
|
|
2449
|
-
lg?: number;
|
|
2450
|
-
xl?: number;
|
|
2451
|
-
};
|
|
2452
|
-
} | undefined;
|
|
2453
|
-
defaults?: {
|
|
2454
|
-
color?: "amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky" | undefined;
|
|
2455
|
-
opacity?: number | undefined;
|
|
2456
|
-
border?: "none" | "solid" | "dashed" | "dotted" | undefined;
|
|
2457
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
2458
|
-
shape?: "rectangle" | "person" | "browser" | "mobile" | "cylinder" | "storage" | "queue" | undefined;
|
|
2459
|
-
group?: {
|
|
2460
|
-
color?: "amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky" | undefined;
|
|
2461
|
-
opacity?: number | undefined;
|
|
2462
|
-
border?: "none" | "solid" | "dashed" | "dotted" | undefined;
|
|
2463
|
-
} | undefined;
|
|
2464
|
-
relationship?: {
|
|
2465
|
-
color?: "amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky" | undefined;
|
|
2466
|
-
line?: "solid" | "dashed" | "dotted" | undefined;
|
|
2467
|
-
arrow?: "none" | "normal" | "onormal" | "dot" | "odot" | "diamond" | "odiamond" | "crow" | "open" | "vee" | undefined;
|
|
2468
|
-
} | undefined;
|
|
2469
|
-
} | undefined;
|
|
2470
|
-
}>>>;
|
|
2471
|
-
exclude: ZodOptional<ZodArray<ZodString>>;
|
|
2472
|
-
manualLayouts: ZodOptional<ZodObject<{
|
|
2473
|
-
outDir: ZodDefault<ZodString>;
|
|
2474
|
-
}, $strip>>;
|
|
2475
|
-
}, $strip>;
|
|
2476
|
-
type LikeC4ProjectJsonConfig = SimplifyDeep<input<typeof LikeC4ProjectJsonConfigSchema>>;
|
|
2477
|
-
/**
|
|
2478
|
-
* Result of the {@link GeneratorFnContext.locate} function
|
|
2479
|
-
*/
|
|
2480
|
-
type LocateResult = {
|
|
2481
|
-
/**
|
|
2482
|
-
* Range inside the source file
|
|
2483
|
-
*/
|
|
2484
|
-
range: {
|
|
2485
|
-
start: {
|
|
2486
|
-
line: number;
|
|
2487
|
-
character: number;
|
|
2488
|
-
};
|
|
2489
|
-
end: {
|
|
2490
|
-
line: number;
|
|
2491
|
-
character: number;
|
|
2492
|
-
};
|
|
2493
|
-
};
|
|
2494
|
-
/**
|
|
2495
|
-
* Full path to the source file
|
|
2496
|
-
*/
|
|
2497
|
-
document: URI;
|
|
2498
|
-
/**
|
|
2499
|
-
* Document path relative to the project folder
|
|
2500
|
-
*/
|
|
2501
|
-
relativePath: string;
|
|
2502
|
-
/**
|
|
2503
|
-
* Folder, containing the source file ("dirname" of document)
|
|
2504
|
-
*/
|
|
2505
|
-
folder: string;
|
|
2506
|
-
/**
|
|
2507
|
-
* Source file name ("basename" of document)
|
|
2508
|
-
*/
|
|
2509
|
-
filename: string;
|
|
2510
|
-
};
|
|
2511
|
-
interface GeneratorFnContext {
|
|
2512
|
-
/**
|
|
2513
|
-
* Workspace root directory
|
|
2514
|
-
*/
|
|
2515
|
-
readonly workspace: URI;
|
|
2516
|
-
/**
|
|
2517
|
-
* Current project
|
|
2518
|
-
*/
|
|
2519
|
-
readonly project: {
|
|
2520
|
-
/**
|
|
2521
|
-
* Project name
|
|
2522
|
-
*/
|
|
2523
|
-
readonly id: ProjectId;
|
|
2524
|
-
readonly title?: string;
|
|
2525
|
-
/**
|
|
2526
|
-
* Project folder
|
|
2527
|
-
*/
|
|
2528
|
-
readonly folder: URI;
|
|
2529
|
-
};
|
|
2530
|
-
/**
|
|
2531
|
-
* Returns the location of the specified element, relation, view or deployment element
|
|
2532
|
-
*/
|
|
2533
|
-
locate(target: ElementModel | RelationshipModel | DeploymentRelationModel | LikeC4ViewModel | DeploymentElementModel): LocateResult;
|
|
2534
|
-
/**
|
|
2535
|
-
* Write a file
|
|
2536
|
-
* @param path - Path to the file, either absolute or relative to the project folder
|
|
2537
|
-
* All folders will be created automatically
|
|
2538
|
-
* @param content - Content of the file
|
|
2539
|
-
*/
|
|
2540
|
-
write(file: {
|
|
2541
|
-
path: string | string[] | URI;
|
|
2542
|
-
content: string | NodeJS.ArrayBufferView | Iterable<string | NodeJS.ArrayBufferView> | AsyncIterable<string | NodeJS.ArrayBufferView> | NodeJS.ReadableStream;
|
|
2543
|
-
}): Promise<void>;
|
|
2544
|
-
/**
|
|
2545
|
-
* Abort the process
|
|
2546
|
-
*/
|
|
2547
|
-
abort(reason?: string): never;
|
|
2548
|
-
}
|
|
2549
|
-
type GeneratorFnParams = {
|
|
2550
|
-
/**
|
|
2551
|
-
* LikeC4 model
|
|
2552
|
-
*/
|
|
2553
|
-
likec4model: LikeC4Model<aux.UnknownLayouted>;
|
|
2554
|
-
/**
|
|
2555
|
-
* Generator context
|
|
2556
|
-
*/
|
|
2557
|
-
ctx: GeneratorFnContext;
|
|
2558
|
-
};
|
|
2559
|
-
interface GeneratorFn {
|
|
2560
|
-
(params: GeneratorFnParams): Promise<void> | void;
|
|
2561
|
-
}
|
|
2562
|
-
/**
|
|
2563
|
-
* LikeC4 project configuration
|
|
2564
|
-
*
|
|
2565
|
-
* @example
|
|
2566
|
-
* ```ts
|
|
2567
|
-
* export default defineConfig({
|
|
2568
|
-
* name: 'my-project',
|
|
2569
|
-
* generators: {
|
|
2570
|
-
* 'my-generator': async ({ likec4model, ctx }) => {
|
|
2571
|
-
* await ctx.write('my-generator.txt', likec4model.project.id)
|
|
2572
|
-
* }
|
|
2573
|
-
* }
|
|
2574
|
-
* })
|
|
2575
|
-
* ```
|
|
2576
|
-
*/
|
|
2577
|
-
type LikeC4ProjectConfig = output<typeof LikeC4ProjectJsonConfigSchema> & {
|
|
2578
|
-
/**
|
|
2579
|
-
* Add custom generators to the project
|
|
2580
|
-
* @example
|
|
2581
|
-
* ```ts
|
|
2582
|
-
* export default defineConfig({
|
|
2583
|
-
* name: 'my-project',
|
|
2584
|
-
* generators: {
|
|
2585
|
-
* 'my-generator': async ({ likec4model, ctx }) => {
|
|
2586
|
-
* await ctx.write('my-generator.txt', likec4model.project.id)
|
|
2587
|
-
* }
|
|
2588
|
-
* }
|
|
2589
|
-
* })
|
|
2590
|
-
* ```
|
|
2591
|
-
*
|
|
2592
|
-
* Execute generator:
|
|
2593
|
-
* ```bash
|
|
2594
|
-
* likec4 gen my-generator
|
|
2595
|
-
* ```
|
|
2596
|
-
*/
|
|
2597
|
-
generators?: Record<string, GeneratorFn> | undefined;
|
|
2598
|
-
};
|
|
2599
|
-
type LikeC4ProjectConfigInput = SimplifyDeep<input<typeof LikeC4ProjectJsonConfigSchema> & {
|
|
2600
|
-
generators?: Record<string, GeneratorFn> | undefined;
|
|
2601
|
-
}>;
|
|
2602
|
-
|
|
2603
|
-
declare const IncludeConfigSchema: ZodObject<{
|
|
2604
|
-
paths: ZodArray<ZodString>;
|
|
2605
|
-
maxDepth: ZodDefault<ZodNumber>;
|
|
2606
|
-
fileThreshold: ZodDefault<ZodNumber>;
|
|
2607
|
-
}, $strip>;
|
|
2608
|
-
type IncludeConfig = output<typeof IncludeConfigSchema>;
|
|
2609
|
-
|
|
2610
|
-
declare const ThemeColorValuesSchema: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
2611
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2612
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2613
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2614
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2615
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2616
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
2617
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2618
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2619
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2620
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2621
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
2622
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2623
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2624
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2625
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
2626
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
2627
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2628
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2629
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2630
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
2631
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
2632
|
-
elements: ElementColorValues;
|
|
2633
|
-
relationships: RelationshipColorValues;
|
|
2634
|
-
}>>;
|
|
2635
|
-
type ThemeColorValuesInput = input<typeof ThemeColorValuesSchema>;
|
|
2636
|
-
declare const LikeC4Config_Styles_Theme: ZodPipe<ZodObject<{
|
|
2637
|
-
colors: ZodOptional<ZodUnion<readonly [ZodRecord<ZodPipe<ZodUnion<readonly [ZodLiteral<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky">, ZodString]>, ZodTransform<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky", string>>, ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
2638
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2639
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2640
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2641
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2642
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2643
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
2644
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2645
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2646
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2647
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2648
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
2649
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2650
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2651
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2652
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
2653
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
2654
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2655
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2656
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2657
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
2658
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
2659
|
-
elements: ElementColorValues;
|
|
2660
|
-
relationships: RelationshipColorValues;
|
|
2661
|
-
}>>>, ZodObject<{
|
|
2662
|
-
amber: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
2663
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2664
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2665
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2666
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2667
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2668
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
2669
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2670
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2671
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2672
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2673
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
2674
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2675
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2676
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2677
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
2678
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
2679
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2680
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2681
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2682
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
2683
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
2684
|
-
elements: ElementColorValues;
|
|
2685
|
-
relationships: RelationshipColorValues;
|
|
2686
|
-
}>>>;
|
|
2687
|
-
blue: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
2688
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2689
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2690
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2691
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2692
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2693
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
2694
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2695
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2696
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2697
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2698
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
2699
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2700
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2701
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2702
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
2703
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
2704
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2705
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2706
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2707
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
2708
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
2709
|
-
elements: ElementColorValues;
|
|
2710
|
-
relationships: RelationshipColorValues;
|
|
2711
|
-
}>>>;
|
|
2712
|
-
gray: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
2713
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2714
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2715
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2716
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2717
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2718
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
2719
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2720
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2721
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2722
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2723
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
2724
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2725
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2726
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2727
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
2728
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
2729
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2730
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2731
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2732
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
2733
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
2734
|
-
elements: ElementColorValues;
|
|
2735
|
-
relationships: RelationshipColorValues;
|
|
2736
|
-
}>>>;
|
|
2737
|
-
slate: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
2738
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2739
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2740
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2741
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2742
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2743
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
2744
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2745
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2746
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2747
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2748
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
2749
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2750
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2751
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2752
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
2753
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
2754
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2755
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2756
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2757
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
2758
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
2759
|
-
elements: ElementColorValues;
|
|
2760
|
-
relationships: RelationshipColorValues;
|
|
2761
|
-
}>>>;
|
|
2762
|
-
green: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
2763
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2764
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2765
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2766
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2767
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2768
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
2769
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2770
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2771
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2772
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2773
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
2774
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2775
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2776
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2777
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
2778
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
2779
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2780
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2781
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2782
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
2783
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
2784
|
-
elements: ElementColorValues;
|
|
2785
|
-
relationships: RelationshipColorValues;
|
|
2786
|
-
}>>>;
|
|
2787
|
-
indigo: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
2788
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2789
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2790
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2791
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2792
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2793
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
2794
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2795
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2796
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2797
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2798
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
2799
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2800
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2801
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2802
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
2803
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
2804
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2805
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2806
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2807
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
2808
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
2809
|
-
elements: ElementColorValues;
|
|
2810
|
-
relationships: RelationshipColorValues;
|
|
2811
|
-
}>>>;
|
|
2812
|
-
muted: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
2813
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2814
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2815
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2816
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2817
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2818
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
2819
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2820
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2821
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2822
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2823
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
2824
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2825
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2826
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2827
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
2828
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
2829
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2830
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2831
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2832
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
2833
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
2834
|
-
elements: ElementColorValues;
|
|
2835
|
-
relationships: RelationshipColorValues;
|
|
2836
|
-
}>>>;
|
|
2837
|
-
primary: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
2838
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2839
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2840
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2841
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2842
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2843
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
2844
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2845
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2846
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2847
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2848
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
2849
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2850
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2851
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2852
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
2853
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
2854
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2855
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2856
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2857
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
2858
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
2859
|
-
elements: ElementColorValues;
|
|
2860
|
-
relationships: RelationshipColorValues;
|
|
2861
|
-
}>>>;
|
|
2862
|
-
red: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
2863
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2864
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2865
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2866
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2867
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2868
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
2869
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2870
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2871
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2872
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2873
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
2874
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2875
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2876
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2877
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
2878
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
2879
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2880
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2881
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2882
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
2883
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
2884
|
-
elements: ElementColorValues;
|
|
2885
|
-
relationships: RelationshipColorValues;
|
|
2886
|
-
}>>>;
|
|
2887
|
-
secondary: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
2888
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2889
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2890
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2891
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2892
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2893
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
2894
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2895
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2896
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2897
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2898
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
2899
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2900
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2901
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2902
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
2903
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
2904
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2905
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2906
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2907
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
2908
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
2909
|
-
elements: ElementColorValues;
|
|
2910
|
-
relationships: RelationshipColorValues;
|
|
2911
|
-
}>>>;
|
|
2912
|
-
sky: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
2913
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2914
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2915
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2916
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2917
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2918
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
2919
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2920
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2921
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2922
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2923
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
2924
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
2925
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2926
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
2927
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
2928
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
2929
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2930
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2931
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
2932
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
2933
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
2934
|
-
elements: ElementColorValues;
|
|
2935
|
-
relationships: RelationshipColorValues;
|
|
2936
|
-
}>>>;
|
|
2937
|
-
}, $strip>]>>;
|
|
2938
|
-
sizes: ZodOptional<ZodObject<{
|
|
2939
|
-
xs: ZodOptional<ZodObject<{
|
|
2940
|
-
width: ZodNumber;
|
|
2941
|
-
height: ZodNumber;
|
|
2942
|
-
}, $strict>>;
|
|
2943
|
-
sm: ZodOptional<ZodObject<{
|
|
2944
|
-
width: ZodNumber;
|
|
2945
|
-
height: ZodNumber;
|
|
2946
|
-
}, $strict>>;
|
|
2947
|
-
md: ZodOptional<ZodObject<{
|
|
2948
|
-
width: ZodNumber;
|
|
2949
|
-
height: ZodNumber;
|
|
2950
|
-
}, $strict>>;
|
|
2951
|
-
lg: ZodOptional<ZodObject<{
|
|
2952
|
-
width: ZodNumber;
|
|
2953
|
-
height: ZodNumber;
|
|
2954
|
-
}, $strict>>;
|
|
2955
|
-
xl: ZodOptional<ZodObject<{
|
|
2956
|
-
width: ZodNumber;
|
|
2957
|
-
height: ZodNumber;
|
|
2958
|
-
}, $strict>>;
|
|
2959
|
-
}, $strict>>;
|
|
2960
|
-
}, $strict>, ZodTransform<{
|
|
2961
|
-
colors?: {
|
|
2962
|
-
amber?: {
|
|
2963
|
-
elements?: {
|
|
2964
|
-
fill?: ColorLiteral;
|
|
2965
|
-
stroke?: ColorLiteral;
|
|
2966
|
-
hiContrast?: ColorLiteral;
|
|
2967
|
-
loContrast?: ColorLiteral;
|
|
2968
|
-
};
|
|
2969
|
-
relationships?: {
|
|
2970
|
-
line?: ColorLiteral;
|
|
2971
|
-
labelBg?: ColorLiteral;
|
|
2972
|
-
label?: ColorLiteral;
|
|
2973
|
-
};
|
|
2974
|
-
};
|
|
2975
|
-
blue?: {
|
|
2976
|
-
elements?: {
|
|
2977
|
-
fill?: ColorLiteral;
|
|
2978
|
-
stroke?: ColorLiteral;
|
|
2979
|
-
hiContrast?: ColorLiteral;
|
|
2980
|
-
loContrast?: ColorLiteral;
|
|
2981
|
-
};
|
|
2982
|
-
relationships?: {
|
|
2983
|
-
line?: ColorLiteral;
|
|
2984
|
-
labelBg?: ColorLiteral;
|
|
2985
|
-
label?: ColorLiteral;
|
|
2986
|
-
};
|
|
2987
|
-
};
|
|
2988
|
-
gray?: {
|
|
2989
|
-
elements?: {
|
|
2990
|
-
fill?: ColorLiteral;
|
|
2991
|
-
stroke?: ColorLiteral;
|
|
2992
|
-
hiContrast?: ColorLiteral;
|
|
2993
|
-
loContrast?: ColorLiteral;
|
|
2994
|
-
};
|
|
2995
|
-
relationships?: {
|
|
2996
|
-
line?: ColorLiteral;
|
|
2997
|
-
labelBg?: ColorLiteral;
|
|
2998
|
-
label?: ColorLiteral;
|
|
2999
|
-
};
|
|
3000
|
-
};
|
|
3001
|
-
slate?: {
|
|
3002
|
-
elements?: {
|
|
3003
|
-
fill?: ColorLiteral;
|
|
3004
|
-
stroke?: ColorLiteral;
|
|
3005
|
-
hiContrast?: ColorLiteral;
|
|
3006
|
-
loContrast?: ColorLiteral;
|
|
3007
|
-
};
|
|
3008
|
-
relationships?: {
|
|
3009
|
-
line?: ColorLiteral;
|
|
3010
|
-
labelBg?: ColorLiteral;
|
|
3011
|
-
label?: ColorLiteral;
|
|
3012
|
-
};
|
|
3013
|
-
};
|
|
3014
|
-
green?: {
|
|
3015
|
-
elements?: {
|
|
3016
|
-
fill?: ColorLiteral;
|
|
3017
|
-
stroke?: ColorLiteral;
|
|
3018
|
-
hiContrast?: ColorLiteral;
|
|
3019
|
-
loContrast?: ColorLiteral;
|
|
3020
|
-
};
|
|
3021
|
-
relationships?: {
|
|
3022
|
-
line?: ColorLiteral;
|
|
3023
|
-
labelBg?: ColorLiteral;
|
|
3024
|
-
label?: ColorLiteral;
|
|
3025
|
-
};
|
|
3026
|
-
};
|
|
3027
|
-
indigo?: {
|
|
3028
|
-
elements?: {
|
|
3029
|
-
fill?: ColorLiteral;
|
|
3030
|
-
stroke?: ColorLiteral;
|
|
3031
|
-
hiContrast?: ColorLiteral;
|
|
3032
|
-
loContrast?: ColorLiteral;
|
|
3033
|
-
};
|
|
3034
|
-
relationships?: {
|
|
3035
|
-
line?: ColorLiteral;
|
|
3036
|
-
labelBg?: ColorLiteral;
|
|
3037
|
-
label?: ColorLiteral;
|
|
3038
|
-
};
|
|
3039
|
-
};
|
|
3040
|
-
muted?: {
|
|
3041
|
-
elements?: {
|
|
3042
|
-
fill?: ColorLiteral;
|
|
3043
|
-
stroke?: ColorLiteral;
|
|
3044
|
-
hiContrast?: ColorLiteral;
|
|
3045
|
-
loContrast?: ColorLiteral;
|
|
3046
|
-
};
|
|
3047
|
-
relationships?: {
|
|
3048
|
-
line?: ColorLiteral;
|
|
3049
|
-
labelBg?: ColorLiteral;
|
|
3050
|
-
label?: ColorLiteral;
|
|
3051
|
-
};
|
|
3052
|
-
};
|
|
3053
|
-
primary?: {
|
|
3054
|
-
elements?: {
|
|
3055
|
-
fill?: ColorLiteral;
|
|
3056
|
-
stroke?: ColorLiteral;
|
|
3057
|
-
hiContrast?: ColorLiteral;
|
|
3058
|
-
loContrast?: ColorLiteral;
|
|
3059
|
-
};
|
|
3060
|
-
relationships?: {
|
|
3061
|
-
line?: ColorLiteral;
|
|
3062
|
-
labelBg?: ColorLiteral;
|
|
3063
|
-
label?: ColorLiteral;
|
|
3064
|
-
};
|
|
3065
|
-
};
|
|
3066
|
-
red?: {
|
|
3067
|
-
elements?: {
|
|
3068
|
-
fill?: ColorLiteral;
|
|
3069
|
-
stroke?: ColorLiteral;
|
|
3070
|
-
hiContrast?: ColorLiteral;
|
|
3071
|
-
loContrast?: ColorLiteral;
|
|
3072
|
-
};
|
|
3073
|
-
relationships?: {
|
|
3074
|
-
line?: ColorLiteral;
|
|
3075
|
-
labelBg?: ColorLiteral;
|
|
3076
|
-
label?: ColorLiteral;
|
|
3077
|
-
};
|
|
3078
|
-
};
|
|
3079
|
-
secondary?: {
|
|
3080
|
-
elements?: {
|
|
3081
|
-
fill?: ColorLiteral;
|
|
3082
|
-
stroke?: ColorLiteral;
|
|
3083
|
-
hiContrast?: ColorLiteral;
|
|
3084
|
-
loContrast?: ColorLiteral;
|
|
3085
|
-
};
|
|
3086
|
-
relationships?: {
|
|
3087
|
-
line?: ColorLiteral;
|
|
3088
|
-
labelBg?: ColorLiteral;
|
|
3089
|
-
label?: ColorLiteral;
|
|
3090
|
-
};
|
|
3091
|
-
};
|
|
3092
|
-
sky?: {
|
|
3093
|
-
elements?: {
|
|
3094
|
-
fill?: ColorLiteral;
|
|
3095
|
-
stroke?: ColorLiteral;
|
|
3096
|
-
hiContrast?: ColorLiteral;
|
|
3097
|
-
loContrast?: ColorLiteral;
|
|
3098
|
-
};
|
|
3099
|
-
relationships?: {
|
|
3100
|
-
line?: ColorLiteral;
|
|
3101
|
-
labelBg?: ColorLiteral;
|
|
3102
|
-
label?: ColorLiteral;
|
|
3103
|
-
};
|
|
3104
|
-
};
|
|
3105
|
-
};
|
|
3106
|
-
sizes?: {
|
|
3107
|
-
xs?: {
|
|
3108
|
-
width?: number;
|
|
3109
|
-
height?: number;
|
|
3110
|
-
};
|
|
3111
|
-
sm?: {
|
|
3112
|
-
width?: number;
|
|
3113
|
-
height?: number;
|
|
3114
|
-
};
|
|
3115
|
-
md?: {
|
|
3116
|
-
width?: number;
|
|
3117
|
-
height?: number;
|
|
3118
|
-
};
|
|
3119
|
-
lg?: {
|
|
3120
|
-
width?: number;
|
|
3121
|
-
height?: number;
|
|
3122
|
-
};
|
|
3123
|
-
xl?: {
|
|
3124
|
-
width?: number;
|
|
3125
|
-
height?: number;
|
|
3126
|
-
};
|
|
3127
|
-
};
|
|
3128
|
-
spacing?: {
|
|
3129
|
-
xs?: number;
|
|
3130
|
-
sm?: number;
|
|
3131
|
-
md?: number;
|
|
3132
|
-
lg?: number;
|
|
3133
|
-
xl?: number;
|
|
3134
|
-
};
|
|
3135
|
-
textSizes?: {
|
|
3136
|
-
xs?: number;
|
|
3137
|
-
sm?: number;
|
|
3138
|
-
md?: number;
|
|
3139
|
-
lg?: number;
|
|
3140
|
-
xl?: number;
|
|
3141
|
-
};
|
|
3142
|
-
}, {
|
|
3143
|
-
colors?: Record<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky", ThemeColorValues> | {
|
|
3144
|
-
amber?: ThemeColorValues | undefined;
|
|
3145
|
-
blue?: ThemeColorValues | undefined;
|
|
3146
|
-
gray?: ThemeColorValues | undefined;
|
|
3147
|
-
slate?: ThemeColorValues | undefined;
|
|
3148
|
-
green?: ThemeColorValues | undefined;
|
|
3149
|
-
indigo?: ThemeColorValues | undefined;
|
|
3150
|
-
muted?: ThemeColorValues | undefined;
|
|
3151
|
-
primary?: ThemeColorValues | undefined;
|
|
3152
|
-
red?: ThemeColorValues | undefined;
|
|
3153
|
-
secondary?: ThemeColorValues | undefined;
|
|
3154
|
-
sky?: ThemeColorValues | undefined;
|
|
3155
|
-
} | undefined;
|
|
3156
|
-
sizes?: {
|
|
3157
|
-
xs?: {
|
|
3158
|
-
width: number;
|
|
3159
|
-
height: number;
|
|
3160
|
-
} | undefined;
|
|
3161
|
-
sm?: {
|
|
3162
|
-
width: number;
|
|
3163
|
-
height: number;
|
|
3164
|
-
} | undefined;
|
|
3165
|
-
md?: {
|
|
3166
|
-
width: number;
|
|
3167
|
-
height: number;
|
|
3168
|
-
} | undefined;
|
|
3169
|
-
lg?: {
|
|
3170
|
-
width: number;
|
|
3171
|
-
height: number;
|
|
3172
|
-
} | undefined;
|
|
3173
|
-
xl?: {
|
|
3174
|
-
width: number;
|
|
3175
|
-
height: number;
|
|
3176
|
-
} | undefined;
|
|
3177
|
-
} | undefined;
|
|
3178
|
-
}>>;
|
|
3179
|
-
type LikeC4ConfigThemeInput = input<typeof LikeC4Config_Styles_Theme>;
|
|
3180
|
-
declare const LikeC4StylesConfigSchema: ZodPipe<ZodObject<{
|
|
3181
|
-
theme: ZodOptional<ZodPipe<ZodObject<{
|
|
3182
|
-
colors: ZodOptional<ZodUnion<readonly [ZodRecord<ZodPipe<ZodUnion<readonly [ZodLiteral<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky">, ZodString]>, ZodTransform<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky", string>>, ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
3183
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3184
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3185
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3186
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3187
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3188
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
3189
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3190
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3191
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3192
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3193
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
3194
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3195
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3196
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3197
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
3198
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
3199
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3200
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3201
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3202
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
3203
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
3204
|
-
elements: ElementColorValues;
|
|
3205
|
-
relationships: RelationshipColorValues;
|
|
3206
|
-
}>>>, ZodObject<{
|
|
3207
|
-
amber: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
3208
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3209
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3210
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3211
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3212
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3213
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
3214
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3215
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3216
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3217
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3218
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
3219
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3220
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3221
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3222
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
3223
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
3224
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3225
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3226
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3227
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
3228
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
3229
|
-
elements: ElementColorValues;
|
|
3230
|
-
relationships: RelationshipColorValues;
|
|
3231
|
-
}>>>;
|
|
3232
|
-
blue: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
3233
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3234
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3235
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3236
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3237
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3238
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
3239
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3240
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3241
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3242
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3243
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
3244
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3245
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3246
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3247
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
3248
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
3249
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3250
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3251
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3252
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
3253
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
3254
|
-
elements: ElementColorValues;
|
|
3255
|
-
relationships: RelationshipColorValues;
|
|
3256
|
-
}>>>;
|
|
3257
|
-
gray: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
3258
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3259
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3260
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3261
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3262
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3263
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
3264
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3265
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3266
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3267
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3268
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
3269
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3270
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3271
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3272
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
3273
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
3274
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3275
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3276
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3277
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
3278
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
3279
|
-
elements: ElementColorValues;
|
|
3280
|
-
relationships: RelationshipColorValues;
|
|
3281
|
-
}>>>;
|
|
3282
|
-
slate: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
3283
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3284
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3285
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3286
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3287
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3288
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
3289
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3290
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3291
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3292
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3293
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
3294
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3295
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3296
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3297
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
3298
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
3299
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3300
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3301
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3302
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
3303
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
3304
|
-
elements: ElementColorValues;
|
|
3305
|
-
relationships: RelationshipColorValues;
|
|
3306
|
-
}>>>;
|
|
3307
|
-
green: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
3308
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3309
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3310
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3311
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3312
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3313
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
3314
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3315
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3316
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3317
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3318
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
3319
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3320
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3321
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3322
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
3323
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
3324
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3325
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3326
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3327
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
3328
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
3329
|
-
elements: ElementColorValues;
|
|
3330
|
-
relationships: RelationshipColorValues;
|
|
3331
|
-
}>>>;
|
|
3332
|
-
indigo: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
3333
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3334
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3335
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3336
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3337
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3338
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
3339
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3340
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3341
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3342
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3343
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
3344
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3345
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3346
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3347
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
3348
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
3349
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3350
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3351
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3352
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
3353
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
3354
|
-
elements: ElementColorValues;
|
|
3355
|
-
relationships: RelationshipColorValues;
|
|
3356
|
-
}>>>;
|
|
3357
|
-
muted: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
3358
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3359
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3360
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3361
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3362
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3363
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
3364
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3365
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3366
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3367
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3368
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
3369
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3370
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3371
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3372
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
3373
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
3374
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3375
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3376
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3377
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
3378
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
3379
|
-
elements: ElementColorValues;
|
|
3380
|
-
relationships: RelationshipColorValues;
|
|
3381
|
-
}>>>;
|
|
3382
|
-
primary: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
3383
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3384
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3385
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3386
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3387
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3388
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
3389
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3390
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3391
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3392
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3393
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
3394
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3395
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3396
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3397
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
3398
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
3399
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3400
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3401
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3402
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
3403
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
3404
|
-
elements: ElementColorValues;
|
|
3405
|
-
relationships: RelationshipColorValues;
|
|
3406
|
-
}>>>;
|
|
3407
|
-
red: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
3408
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3409
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3410
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3411
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3412
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3413
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
3414
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3415
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3416
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3417
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3418
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
3419
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3420
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3421
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3422
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
3423
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
3424
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3425
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3426
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3427
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
3428
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
3429
|
-
elements: ElementColorValues;
|
|
3430
|
-
relationships: RelationshipColorValues;
|
|
3431
|
-
}>>>;
|
|
3432
|
-
secondary: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
3433
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3434
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3435
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3436
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3437
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3438
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
3439
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3440
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3441
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3442
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3443
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
3444
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3445
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3446
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3447
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
3448
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
3449
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3450
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3451
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3452
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
3453
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
3454
|
-
elements: ElementColorValues;
|
|
3455
|
-
relationships: RelationshipColorValues;
|
|
3456
|
-
}>>>;
|
|
3457
|
-
sky: ZodOptional<ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodObject<{
|
|
3458
|
-
elements: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3459
|
-
fill: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3460
|
-
stroke: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3461
|
-
hiContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3462
|
-
loContrast: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3463
|
-
}, $strict>, ZodTransform<ElementColorValues, {
|
|
3464
|
-
fill: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3465
|
-
stroke: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3466
|
-
hiContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3467
|
-
loContrast: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3468
|
-
}>>]>, ZodTransform<ElementColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | ElementColorValues>>;
|
|
3469
|
-
relationships: ZodPipe<ZodUnion<readonly [ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>, ZodPipe<ZodObject<{
|
|
3470
|
-
line: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3471
|
-
label: ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>;
|
|
3472
|
-
labelBg: ZodDefault<ZodOptional<ZodPipe<ZodString, ZodTransform<`#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`, string>>>>;
|
|
3473
|
-
}, $strict>, ZodTransform<RelationshipColorValues, {
|
|
3474
|
-
line: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3475
|
-
label: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3476
|
-
labelBg: `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})`;
|
|
3477
|
-
}>>]>, ZodTransform<RelationshipColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | RelationshipColorValues>>;
|
|
3478
|
-
}, $strict>]>, ZodTransform<ThemeColorValues, `#${string}` | `rgb(${number},${number},${number})` | `rgba(${number},${number},${number},${number})` | {
|
|
3479
|
-
elements: ElementColorValues;
|
|
3480
|
-
relationships: RelationshipColorValues;
|
|
3481
|
-
}>>>;
|
|
3482
|
-
}, $strip>]>>;
|
|
3483
|
-
sizes: ZodOptional<ZodObject<{
|
|
3484
|
-
xs: ZodOptional<ZodObject<{
|
|
3485
|
-
width: ZodNumber;
|
|
3486
|
-
height: ZodNumber;
|
|
3487
|
-
}, $strict>>;
|
|
3488
|
-
sm: ZodOptional<ZodObject<{
|
|
3489
|
-
width: ZodNumber;
|
|
3490
|
-
height: ZodNumber;
|
|
3491
|
-
}, $strict>>;
|
|
3492
|
-
md: ZodOptional<ZodObject<{
|
|
3493
|
-
width: ZodNumber;
|
|
3494
|
-
height: ZodNumber;
|
|
3495
|
-
}, $strict>>;
|
|
3496
|
-
lg: ZodOptional<ZodObject<{
|
|
3497
|
-
width: ZodNumber;
|
|
3498
|
-
height: ZodNumber;
|
|
3499
|
-
}, $strict>>;
|
|
3500
|
-
xl: ZodOptional<ZodObject<{
|
|
3501
|
-
width: ZodNumber;
|
|
3502
|
-
height: ZodNumber;
|
|
3503
|
-
}, $strict>>;
|
|
3504
|
-
}, $strict>>;
|
|
3505
|
-
}, $strict>, ZodTransform<{
|
|
3506
|
-
colors?: {
|
|
3507
|
-
amber?: {
|
|
3508
|
-
elements?: {
|
|
3509
|
-
fill?: ColorLiteral;
|
|
3510
|
-
stroke?: ColorLiteral;
|
|
3511
|
-
hiContrast?: ColorLiteral;
|
|
3512
|
-
loContrast?: ColorLiteral;
|
|
3513
|
-
};
|
|
3514
|
-
relationships?: {
|
|
3515
|
-
line?: ColorLiteral;
|
|
3516
|
-
labelBg?: ColorLiteral;
|
|
3517
|
-
label?: ColorLiteral;
|
|
3518
|
-
};
|
|
3519
|
-
};
|
|
3520
|
-
blue?: {
|
|
3521
|
-
elements?: {
|
|
3522
|
-
fill?: ColorLiteral;
|
|
3523
|
-
stroke?: ColorLiteral;
|
|
3524
|
-
hiContrast?: ColorLiteral;
|
|
3525
|
-
loContrast?: ColorLiteral;
|
|
3526
|
-
};
|
|
3527
|
-
relationships?: {
|
|
3528
|
-
line?: ColorLiteral;
|
|
3529
|
-
labelBg?: ColorLiteral;
|
|
3530
|
-
label?: ColorLiteral;
|
|
3531
|
-
};
|
|
3532
|
-
};
|
|
3533
|
-
gray?: {
|
|
3534
|
-
elements?: {
|
|
3535
|
-
fill?: ColorLiteral;
|
|
3536
|
-
stroke?: ColorLiteral;
|
|
3537
|
-
hiContrast?: ColorLiteral;
|
|
3538
|
-
loContrast?: ColorLiteral;
|
|
3539
|
-
};
|
|
3540
|
-
relationships?: {
|
|
3541
|
-
line?: ColorLiteral;
|
|
3542
|
-
labelBg?: ColorLiteral;
|
|
3543
|
-
label?: ColorLiteral;
|
|
3544
|
-
};
|
|
3545
|
-
};
|
|
3546
|
-
slate?: {
|
|
3547
|
-
elements?: {
|
|
3548
|
-
fill?: ColorLiteral;
|
|
3549
|
-
stroke?: ColorLiteral;
|
|
3550
|
-
hiContrast?: ColorLiteral;
|
|
3551
|
-
loContrast?: ColorLiteral;
|
|
3552
|
-
};
|
|
3553
|
-
relationships?: {
|
|
3554
|
-
line?: ColorLiteral;
|
|
3555
|
-
labelBg?: ColorLiteral;
|
|
3556
|
-
label?: ColorLiteral;
|
|
3557
|
-
};
|
|
3558
|
-
};
|
|
3559
|
-
green?: {
|
|
3560
|
-
elements?: {
|
|
3561
|
-
fill?: ColorLiteral;
|
|
3562
|
-
stroke?: ColorLiteral;
|
|
3563
|
-
hiContrast?: ColorLiteral;
|
|
3564
|
-
loContrast?: ColorLiteral;
|
|
3565
|
-
};
|
|
3566
|
-
relationships?: {
|
|
3567
|
-
line?: ColorLiteral;
|
|
3568
|
-
labelBg?: ColorLiteral;
|
|
3569
|
-
label?: ColorLiteral;
|
|
3570
|
-
};
|
|
3571
|
-
};
|
|
3572
|
-
indigo?: {
|
|
3573
|
-
elements?: {
|
|
3574
|
-
fill?: ColorLiteral;
|
|
3575
|
-
stroke?: ColorLiteral;
|
|
3576
|
-
hiContrast?: ColorLiteral;
|
|
3577
|
-
loContrast?: ColorLiteral;
|
|
3578
|
-
};
|
|
3579
|
-
relationships?: {
|
|
3580
|
-
line?: ColorLiteral;
|
|
3581
|
-
labelBg?: ColorLiteral;
|
|
3582
|
-
label?: ColorLiteral;
|
|
3583
|
-
};
|
|
3584
|
-
};
|
|
3585
|
-
muted?: {
|
|
3586
|
-
elements?: {
|
|
3587
|
-
fill?: ColorLiteral;
|
|
3588
|
-
stroke?: ColorLiteral;
|
|
3589
|
-
hiContrast?: ColorLiteral;
|
|
3590
|
-
loContrast?: ColorLiteral;
|
|
3591
|
-
};
|
|
3592
|
-
relationships?: {
|
|
3593
|
-
line?: ColorLiteral;
|
|
3594
|
-
labelBg?: ColorLiteral;
|
|
3595
|
-
label?: ColorLiteral;
|
|
3596
|
-
};
|
|
3597
|
-
};
|
|
3598
|
-
primary?: {
|
|
3599
|
-
elements?: {
|
|
3600
|
-
fill?: ColorLiteral;
|
|
3601
|
-
stroke?: ColorLiteral;
|
|
3602
|
-
hiContrast?: ColorLiteral;
|
|
3603
|
-
loContrast?: ColorLiteral;
|
|
3604
|
-
};
|
|
3605
|
-
relationships?: {
|
|
3606
|
-
line?: ColorLiteral;
|
|
3607
|
-
labelBg?: ColorLiteral;
|
|
3608
|
-
label?: ColorLiteral;
|
|
3609
|
-
};
|
|
3610
|
-
};
|
|
3611
|
-
red?: {
|
|
3612
|
-
elements?: {
|
|
3613
|
-
fill?: ColorLiteral;
|
|
3614
|
-
stroke?: ColorLiteral;
|
|
3615
|
-
hiContrast?: ColorLiteral;
|
|
3616
|
-
loContrast?: ColorLiteral;
|
|
3617
|
-
};
|
|
3618
|
-
relationships?: {
|
|
3619
|
-
line?: ColorLiteral;
|
|
3620
|
-
labelBg?: ColorLiteral;
|
|
3621
|
-
label?: ColorLiteral;
|
|
3622
|
-
};
|
|
3623
|
-
};
|
|
3624
|
-
secondary?: {
|
|
3625
|
-
elements?: {
|
|
3626
|
-
fill?: ColorLiteral;
|
|
3627
|
-
stroke?: ColorLiteral;
|
|
3628
|
-
hiContrast?: ColorLiteral;
|
|
3629
|
-
loContrast?: ColorLiteral;
|
|
3630
|
-
};
|
|
3631
|
-
relationships?: {
|
|
3632
|
-
line?: ColorLiteral;
|
|
3633
|
-
labelBg?: ColorLiteral;
|
|
3634
|
-
label?: ColorLiteral;
|
|
3635
|
-
};
|
|
3636
|
-
};
|
|
3637
|
-
sky?: {
|
|
3638
|
-
elements?: {
|
|
3639
|
-
fill?: ColorLiteral;
|
|
3640
|
-
stroke?: ColorLiteral;
|
|
3641
|
-
hiContrast?: ColorLiteral;
|
|
3642
|
-
loContrast?: ColorLiteral;
|
|
3643
|
-
};
|
|
3644
|
-
relationships?: {
|
|
3645
|
-
line?: ColorLiteral;
|
|
3646
|
-
labelBg?: ColorLiteral;
|
|
3647
|
-
label?: ColorLiteral;
|
|
3648
|
-
};
|
|
3649
|
-
};
|
|
3650
|
-
};
|
|
3651
|
-
sizes?: {
|
|
3652
|
-
xs?: {
|
|
3653
|
-
width?: number;
|
|
3654
|
-
height?: number;
|
|
3655
|
-
};
|
|
3656
|
-
sm?: {
|
|
3657
|
-
width?: number;
|
|
3658
|
-
height?: number;
|
|
3659
|
-
};
|
|
3660
|
-
md?: {
|
|
3661
|
-
width?: number;
|
|
3662
|
-
height?: number;
|
|
3663
|
-
};
|
|
3664
|
-
lg?: {
|
|
3665
|
-
width?: number;
|
|
3666
|
-
height?: number;
|
|
3667
|
-
};
|
|
3668
|
-
xl?: {
|
|
3669
|
-
width?: number;
|
|
3670
|
-
height?: number;
|
|
3671
|
-
};
|
|
3672
|
-
};
|
|
3673
|
-
spacing?: {
|
|
3674
|
-
xs?: number;
|
|
3675
|
-
sm?: number;
|
|
3676
|
-
md?: number;
|
|
3677
|
-
lg?: number;
|
|
3678
|
-
xl?: number;
|
|
3679
|
-
};
|
|
3680
|
-
textSizes?: {
|
|
3681
|
-
xs?: number;
|
|
3682
|
-
sm?: number;
|
|
3683
|
-
md?: number;
|
|
3684
|
-
lg?: number;
|
|
3685
|
-
xl?: number;
|
|
3686
|
-
};
|
|
3687
|
-
}, {
|
|
3688
|
-
colors?: Record<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky", ThemeColorValues> | {
|
|
3689
|
-
amber?: ThemeColorValues | undefined;
|
|
3690
|
-
blue?: ThemeColorValues | undefined;
|
|
3691
|
-
gray?: ThemeColorValues | undefined;
|
|
3692
|
-
slate?: ThemeColorValues | undefined;
|
|
3693
|
-
green?: ThemeColorValues | undefined;
|
|
3694
|
-
indigo?: ThemeColorValues | undefined;
|
|
3695
|
-
muted?: ThemeColorValues | undefined;
|
|
3696
|
-
primary?: ThemeColorValues | undefined;
|
|
3697
|
-
red?: ThemeColorValues | undefined;
|
|
3698
|
-
secondary?: ThemeColorValues | undefined;
|
|
3699
|
-
sky?: ThemeColorValues | undefined;
|
|
3700
|
-
} | undefined;
|
|
3701
|
-
sizes?: {
|
|
3702
|
-
xs?: {
|
|
3703
|
-
width: number;
|
|
3704
|
-
height: number;
|
|
3705
|
-
} | undefined;
|
|
3706
|
-
sm?: {
|
|
3707
|
-
width: number;
|
|
3708
|
-
height: number;
|
|
3709
|
-
} | undefined;
|
|
3710
|
-
md?: {
|
|
3711
|
-
width: number;
|
|
3712
|
-
height: number;
|
|
3713
|
-
} | undefined;
|
|
3714
|
-
lg?: {
|
|
3715
|
-
width: number;
|
|
3716
|
-
height: number;
|
|
3717
|
-
} | undefined;
|
|
3718
|
-
xl?: {
|
|
3719
|
-
width: number;
|
|
3720
|
-
height: number;
|
|
3721
|
-
} | undefined;
|
|
3722
|
-
} | undefined;
|
|
3723
|
-
}>>>;
|
|
3724
|
-
defaults: ZodOptional<ZodObject<{
|
|
3725
|
-
color: ZodOptional<ZodPipe<ZodUnion<readonly [ZodLiteral<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky">, ZodString]>, ZodTransform<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky", string>>>;
|
|
3726
|
-
opacity: ZodOptional<ZodInt>;
|
|
3727
|
-
border: ZodOptional<ZodLiteral<"none" | "solid" | "dashed" | "dotted">>;
|
|
3728
|
-
size: ZodOptional<ZodLiteral<"xs" | "sm" | "md" | "lg" | "xl">>;
|
|
3729
|
-
shape: ZodOptional<ZodLiteral<"rectangle" | "person" | "browser" | "mobile" | "cylinder" | "storage" | "queue">>;
|
|
3730
|
-
group: ZodOptional<ZodObject<{
|
|
3731
|
-
color: ZodOptional<ZodPipe<ZodUnion<readonly [ZodLiteral<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky">, ZodString]>, ZodTransform<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky", string>>>;
|
|
3732
|
-
opacity: ZodOptional<ZodInt>;
|
|
3733
|
-
border: ZodOptional<ZodLiteral<"none" | "solid" | "dashed" | "dotted">>;
|
|
3734
|
-
}, $strict>>;
|
|
3735
|
-
relationship: ZodOptional<ZodObject<{
|
|
3736
|
-
color: ZodOptional<ZodPipe<ZodUnion<readonly [ZodLiteral<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky">, ZodString]>, ZodTransform<"amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky", string>>>;
|
|
3737
|
-
line: ZodOptional<ZodLiteral<"solid" | "dashed" | "dotted">>;
|
|
3738
|
-
arrow: ZodOptional<ZodLiteral<"none" | "normal" | "onormal" | "dot" | "odot" | "diamond" | "odiamond" | "crow" | "open" | "vee">>;
|
|
3739
|
-
}, $strict>>;
|
|
3740
|
-
}, $strict>>;
|
|
3741
|
-
}, $strict>, ZodTransform<LikeC4ProjectStylesConfig, {
|
|
3742
|
-
theme?: {
|
|
3743
|
-
colors?: {
|
|
3744
|
-
amber?: {
|
|
3745
|
-
elements?: {
|
|
3746
|
-
fill?: ColorLiteral;
|
|
3747
|
-
stroke?: ColorLiteral;
|
|
3748
|
-
hiContrast?: ColorLiteral;
|
|
3749
|
-
loContrast?: ColorLiteral;
|
|
3750
|
-
};
|
|
3751
|
-
relationships?: {
|
|
3752
|
-
line?: ColorLiteral;
|
|
3753
|
-
labelBg?: ColorLiteral;
|
|
3754
|
-
label?: ColorLiteral;
|
|
3755
|
-
};
|
|
3756
|
-
};
|
|
3757
|
-
blue?: {
|
|
3758
|
-
elements?: {
|
|
3759
|
-
fill?: ColorLiteral;
|
|
3760
|
-
stroke?: ColorLiteral;
|
|
3761
|
-
hiContrast?: ColorLiteral;
|
|
3762
|
-
loContrast?: ColorLiteral;
|
|
3763
|
-
};
|
|
3764
|
-
relationships?: {
|
|
3765
|
-
line?: ColorLiteral;
|
|
3766
|
-
labelBg?: ColorLiteral;
|
|
3767
|
-
label?: ColorLiteral;
|
|
3768
|
-
};
|
|
3769
|
-
};
|
|
3770
|
-
gray?: {
|
|
3771
|
-
elements?: {
|
|
3772
|
-
fill?: ColorLiteral;
|
|
3773
|
-
stroke?: ColorLiteral;
|
|
3774
|
-
hiContrast?: ColorLiteral;
|
|
3775
|
-
loContrast?: ColorLiteral;
|
|
3776
|
-
};
|
|
3777
|
-
relationships?: {
|
|
3778
|
-
line?: ColorLiteral;
|
|
3779
|
-
labelBg?: ColorLiteral;
|
|
3780
|
-
label?: ColorLiteral;
|
|
3781
|
-
};
|
|
3782
|
-
};
|
|
3783
|
-
slate?: {
|
|
3784
|
-
elements?: {
|
|
3785
|
-
fill?: ColorLiteral;
|
|
3786
|
-
stroke?: ColorLiteral;
|
|
3787
|
-
hiContrast?: ColorLiteral;
|
|
3788
|
-
loContrast?: ColorLiteral;
|
|
3789
|
-
};
|
|
3790
|
-
relationships?: {
|
|
3791
|
-
line?: ColorLiteral;
|
|
3792
|
-
labelBg?: ColorLiteral;
|
|
3793
|
-
label?: ColorLiteral;
|
|
3794
|
-
};
|
|
3795
|
-
};
|
|
3796
|
-
green?: {
|
|
3797
|
-
elements?: {
|
|
3798
|
-
fill?: ColorLiteral;
|
|
3799
|
-
stroke?: ColorLiteral;
|
|
3800
|
-
hiContrast?: ColorLiteral;
|
|
3801
|
-
loContrast?: ColorLiteral;
|
|
3802
|
-
};
|
|
3803
|
-
relationships?: {
|
|
3804
|
-
line?: ColorLiteral;
|
|
3805
|
-
labelBg?: ColorLiteral;
|
|
3806
|
-
label?: ColorLiteral;
|
|
3807
|
-
};
|
|
3808
|
-
};
|
|
3809
|
-
indigo?: {
|
|
3810
|
-
elements?: {
|
|
3811
|
-
fill?: ColorLiteral;
|
|
3812
|
-
stroke?: ColorLiteral;
|
|
3813
|
-
hiContrast?: ColorLiteral;
|
|
3814
|
-
loContrast?: ColorLiteral;
|
|
3815
|
-
};
|
|
3816
|
-
relationships?: {
|
|
3817
|
-
line?: ColorLiteral;
|
|
3818
|
-
labelBg?: ColorLiteral;
|
|
3819
|
-
label?: ColorLiteral;
|
|
3820
|
-
};
|
|
3821
|
-
};
|
|
3822
|
-
muted?: {
|
|
3823
|
-
elements?: {
|
|
3824
|
-
fill?: ColorLiteral;
|
|
3825
|
-
stroke?: ColorLiteral;
|
|
3826
|
-
hiContrast?: ColorLiteral;
|
|
3827
|
-
loContrast?: ColorLiteral;
|
|
3828
|
-
};
|
|
3829
|
-
relationships?: {
|
|
3830
|
-
line?: ColorLiteral;
|
|
3831
|
-
labelBg?: ColorLiteral;
|
|
3832
|
-
label?: ColorLiteral;
|
|
3833
|
-
};
|
|
3834
|
-
};
|
|
3835
|
-
primary?: {
|
|
3836
|
-
elements?: {
|
|
3837
|
-
fill?: ColorLiteral;
|
|
3838
|
-
stroke?: ColorLiteral;
|
|
3839
|
-
hiContrast?: ColorLiteral;
|
|
3840
|
-
loContrast?: ColorLiteral;
|
|
3841
|
-
};
|
|
3842
|
-
relationships?: {
|
|
3843
|
-
line?: ColorLiteral;
|
|
3844
|
-
labelBg?: ColorLiteral;
|
|
3845
|
-
label?: ColorLiteral;
|
|
3846
|
-
};
|
|
3847
|
-
};
|
|
3848
|
-
red?: {
|
|
3849
|
-
elements?: {
|
|
3850
|
-
fill?: ColorLiteral;
|
|
3851
|
-
stroke?: ColorLiteral;
|
|
3852
|
-
hiContrast?: ColorLiteral;
|
|
3853
|
-
loContrast?: ColorLiteral;
|
|
3854
|
-
};
|
|
3855
|
-
relationships?: {
|
|
3856
|
-
line?: ColorLiteral;
|
|
3857
|
-
labelBg?: ColorLiteral;
|
|
3858
|
-
label?: ColorLiteral;
|
|
3859
|
-
};
|
|
3860
|
-
};
|
|
3861
|
-
secondary?: {
|
|
3862
|
-
elements?: {
|
|
3863
|
-
fill?: ColorLiteral;
|
|
3864
|
-
stroke?: ColorLiteral;
|
|
3865
|
-
hiContrast?: ColorLiteral;
|
|
3866
|
-
loContrast?: ColorLiteral;
|
|
3867
|
-
};
|
|
3868
|
-
relationships?: {
|
|
3869
|
-
line?: ColorLiteral;
|
|
3870
|
-
labelBg?: ColorLiteral;
|
|
3871
|
-
label?: ColorLiteral;
|
|
3872
|
-
};
|
|
3873
|
-
};
|
|
3874
|
-
sky?: {
|
|
3875
|
-
elements?: {
|
|
3876
|
-
fill?: ColorLiteral;
|
|
3877
|
-
stroke?: ColorLiteral;
|
|
3878
|
-
hiContrast?: ColorLiteral;
|
|
3879
|
-
loContrast?: ColorLiteral;
|
|
3880
|
-
};
|
|
3881
|
-
relationships?: {
|
|
3882
|
-
line?: ColorLiteral;
|
|
3883
|
-
labelBg?: ColorLiteral;
|
|
3884
|
-
label?: ColorLiteral;
|
|
3885
|
-
};
|
|
3886
|
-
};
|
|
3887
|
-
};
|
|
3888
|
-
sizes?: {
|
|
3889
|
-
xs?: {
|
|
3890
|
-
width?: number;
|
|
3891
|
-
height?: number;
|
|
3892
|
-
};
|
|
3893
|
-
sm?: {
|
|
3894
|
-
width?: number;
|
|
3895
|
-
height?: number;
|
|
3896
|
-
};
|
|
3897
|
-
md?: {
|
|
3898
|
-
width?: number;
|
|
3899
|
-
height?: number;
|
|
3900
|
-
};
|
|
3901
|
-
lg?: {
|
|
3902
|
-
width?: number;
|
|
3903
|
-
height?: number;
|
|
3904
|
-
};
|
|
3905
|
-
xl?: {
|
|
3906
|
-
width?: number;
|
|
3907
|
-
height?: number;
|
|
3908
|
-
};
|
|
3909
|
-
};
|
|
3910
|
-
spacing?: {
|
|
3911
|
-
xs?: number;
|
|
3912
|
-
sm?: number;
|
|
3913
|
-
md?: number;
|
|
3914
|
-
lg?: number;
|
|
3915
|
-
xl?: number;
|
|
3916
|
-
};
|
|
3917
|
-
textSizes?: {
|
|
3918
|
-
xs?: number;
|
|
3919
|
-
sm?: number;
|
|
3920
|
-
md?: number;
|
|
3921
|
-
lg?: number;
|
|
3922
|
-
xl?: number;
|
|
3923
|
-
};
|
|
3924
|
-
} | undefined;
|
|
3925
|
-
defaults?: {
|
|
3926
|
-
color?: "amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky" | undefined;
|
|
3927
|
-
opacity?: number | undefined;
|
|
3928
|
-
border?: "none" | "solid" | "dashed" | "dotted" | undefined;
|
|
3929
|
-
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
3930
|
-
shape?: "rectangle" | "person" | "browser" | "mobile" | "cylinder" | "storage" | "queue" | undefined;
|
|
3931
|
-
group?: {
|
|
3932
|
-
color?: "amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky" | undefined;
|
|
3933
|
-
opacity?: number | undefined;
|
|
3934
|
-
border?: "none" | "solid" | "dashed" | "dotted" | undefined;
|
|
3935
|
-
} | undefined;
|
|
3936
|
-
relationship?: {
|
|
3937
|
-
color?: "amber" | "blue" | "gray" | "slate" | "green" | "indigo" | "muted" | "primary" | "red" | "secondary" | "sky" | undefined;
|
|
3938
|
-
line?: "solid" | "dashed" | "dotted" | undefined;
|
|
3939
|
-
arrow?: "none" | "normal" | "onormal" | "dot" | "odot" | "diamond" | "odiamond" | "crow" | "open" | "vee" | undefined;
|
|
3940
|
-
} | undefined;
|
|
3941
|
-
} | undefined;
|
|
3942
|
-
}>>;
|
|
3943
|
-
interface LikeC4StylesConfig extends output<typeof LikeC4StylesConfigSchema> {
|
|
3944
|
-
}
|
|
3945
|
-
type LikeC4StylesConfigInput = input<typeof LikeC4StylesConfigSchema>;
|
|
3946
|
-
|
|
3947
|
-
declare const configJsonFilenames: readonly [".likec4rc", ".likec4.config.json", "likec4.config.json"];
|
|
3948
|
-
declare const configNonJsonFilenames: readonly ["likec4.config.js", "likec4.config.mjs", "likec4.config.ts", "likec4.config.mts"];
|
|
3949
|
-
declare const ConfigFilenames: readonly [".likec4rc", ".likec4.config.json", "likec4.config.json", "likec4.config.js", "likec4.config.mjs", "likec4.config.ts", "likec4.config.mts"];
|
|
3950
|
-
/**
|
|
3951
|
-
* Checks if the given filename is a LikeC4 JSON config file (JSON, RC).
|
|
3952
|
-
*/
|
|
3953
|
-
declare function isLikeC4JsonConfig(filename: string): filename is typeof configJsonFilenames[number];
|
|
3954
|
-
/**
|
|
3955
|
-
* Checks if the given filename is a LikeC4 non-JSON config file (JS, MJS, TS, MTS)
|
|
3956
|
-
*/
|
|
3957
|
-
declare function isLikeC4NonJsonConfig(filename: string): filename is typeof configNonJsonFilenames[number];
|
|
3958
|
-
/**
|
|
3959
|
-
* Checks if the given filename is a LikeC4 config file (JSON or non-JSON)
|
|
3960
|
-
*/
|
|
3961
|
-
declare function isLikeC4Config(filename: string): filename is typeof ConfigFilenames[number];
|
|
3962
|
-
|
|
3963
|
-
/**
|
|
3964
|
-
* Defines LikeC4 Project, allows custom generators that can be executed using CLI:
|
|
3965
|
-
*
|
|
3966
|
-
* `$ likec4 gen <generator-name>`
|
|
3967
|
-
*
|
|
3968
|
-
* or VSCode command `LikeC4: Run code generator`
|
|
3969
|
-
*
|
|
3970
|
-
* @example
|
|
3971
|
-
* ```ts
|
|
3972
|
-
* export default defineConfig({
|
|
3973
|
-
* name: 'my-project',
|
|
3974
|
-
* title: 'My Project',
|
|
3975
|
-
* exclude: ['picomatch pattern'],
|
|
3976
|
-
* generators: {
|
|
3977
|
-
* 'my-generator': async ({ likec4model, ctx }) => {
|
|
3978
|
-
* await ctx.write('my-generator.txt', likec4model.project.id)
|
|
3979
|
-
* }
|
|
3980
|
-
* }
|
|
3981
|
-
* })
|
|
3982
|
-
* ```
|
|
3983
|
-
*/
|
|
3984
|
-
declare function defineConfig<C extends LikeC4ProjectConfigInput>(config: C): LikeC4ProjectConfig;
|
|
3985
|
-
/**
|
|
3986
|
-
* Define reusable custom generators
|
|
3987
|
-
*
|
|
3988
|
-
* @example
|
|
3989
|
-
* ```ts
|
|
3990
|
-
* // generators.ts
|
|
3991
|
-
* export default defineGenerators({
|
|
3992
|
-
* 'my-generator': async ({ likec4model, ctx }) => {
|
|
3993
|
-
* await ctx.write('my-generator.txt', likec4model.project.id)
|
|
3994
|
-
* }
|
|
3995
|
-
* })
|
|
3996
|
-
*
|
|
3997
|
-
* // likec4.config.ts
|
|
3998
|
-
* import generators from './generators'
|
|
3999
|
-
*
|
|
4000
|
-
* export default defineConfig({
|
|
4001
|
-
* name: 'my-project',
|
|
4002
|
-
* generators,
|
|
4003
|
-
* })
|
|
4004
|
-
* ```
|
|
4005
|
-
*/
|
|
4006
|
-
declare function defineGenerators<const G extends Record<string, GeneratorFn>>(generators: G): G;
|
|
4007
|
-
/**
|
|
4008
|
-
* Define reusable custom theme color
|
|
4009
|
-
* @example
|
|
4010
|
-
* ```ts
|
|
4011
|
-
* export default defineThemeColor({
|
|
4012
|
-
* element: {
|
|
4013
|
-
* fill: 'red'
|
|
4014
|
-
* }
|
|
4015
|
-
* })
|
|
4016
|
-
* ```
|
|
4017
|
-
*/
|
|
4018
|
-
declare function defineThemeColor<const S extends ThemeColorValuesInput>(colors: S): ThemeColorValues$1;
|
|
4019
|
-
/**
|
|
4020
|
-
* Define reusable custom theme
|
|
4021
|
-
* @example
|
|
4022
|
-
* ```ts
|
|
4023
|
-
* import { defineThemeColor, defineTheme } from 'likec4/config'
|
|
4024
|
-
*
|
|
4025
|
-
* export default defineTheme({
|
|
4026
|
-
* colors: {
|
|
4027
|
-
* primary: '#FF0000',
|
|
4028
|
-
* // Or use defineThemeColor
|
|
4029
|
-
* red: defineThemeColor({
|
|
4030
|
-
* elements: {
|
|
4031
|
-
* fill: 'red'
|
|
4032
|
-
* }
|
|
4033
|
-
* })
|
|
4034
|
-
* }
|
|
4035
|
-
* })
|
|
4036
|
-
* ```
|
|
4037
|
-
*/
|
|
4038
|
-
declare function defineTheme<const S extends LikeC4ConfigThemeInput>(theme: S): LikeC4ProjectTheme;
|
|
4039
|
-
/**
|
|
4040
|
-
* Define reusable custom style
|
|
4041
|
-
* @example
|
|
4042
|
-
* ```ts
|
|
4043
|
-
* import { defineStyle, defineThemeColor } from 'likec4/config'
|
|
4044
|
-
*
|
|
4045
|
-
* export default defineStyle({
|
|
4046
|
-
* theme: {
|
|
4047
|
-
* colors: {
|
|
4048
|
-
* red: defineThemeColor({
|
|
4049
|
-
* elements: {
|
|
4050
|
-
* fill: 'red'
|
|
4051
|
-
* }
|
|
4052
|
-
* })
|
|
4053
|
-
* }
|
|
4054
|
-
* },
|
|
4055
|
-
* defaults: {
|
|
4056
|
-
* color: 'red',
|
|
4057
|
-
* opacity: 50,
|
|
4058
|
-
* border: 'solid',
|
|
4059
|
-
* size: 'sm',
|
|
4060
|
-
* relationship: {
|
|
4061
|
-
* color: 'grey',
|
|
4062
|
-
* line: 'solid',
|
|
4063
|
-
* }
|
|
4064
|
-
* }
|
|
4065
|
-
* })
|
|
4066
|
-
*/
|
|
4067
|
-
declare function defineStyle<const S extends LikeC4StylesConfigInput>(styles: S): LikeC4ProjectStylesConfig;
|
|
4068
|
-
|
|
4069
|
-
export { type GeneratorFn as G, type IncludeConfig as I, type LikeC4ProjectConfig as L, URI as U, type LikeC4ProjectConfigInput as a, defineGenerators as b, defineStyle as c, defineConfig as d, defineTheme as e, defineThemeColor as f, type GeneratorFnContext as g, type GeneratorFnParams as h, isLikeC4Config as i, isLikeC4JsonConfig as j, isLikeC4NonJsonConfig as k, type LikeC4ProjectJsonConfig as l, type LikeC4StylesConfig as m, type LikeC4StylesConfigInput as n };
|