Compare commits
2 Commits
76ac6f14b2
...
456520dfd9
Author | SHA1 | Date | |
---|---|---|---|
|
456520dfd9 | ||
b1e1bba3c8 |
1
.cuddle/base
Submodule
1
.cuddle/base
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 8d4e4cc2149f190bff01f2c1eeb97a90a71fa9f1
|
134
.cuddle/tmp/cuddle-node-service-plan.yaml
Normal file
134
.cuddle/tmp/cuddle-node-service-plan.yaml
Normal file
@ -0,0 +1,134 @@
|
||||
kind: pipeline
|
||||
name: cuddle-node-service-plan
|
||||
type: docker
|
||||
|
||||
steps:
|
||||
- name: load_secret
|
||||
image: debian:buster-slim
|
||||
volumes:
|
||||
- name: ssh
|
||||
path: /root/.ssh/
|
||||
environment:
|
||||
SSH_KEY:
|
||||
from_secret: gitea_id_ed25519
|
||||
commands:
|
||||
- mkdir -p $HOME/.ssh/
|
||||
- echo "$SSH_KEY" | base64 -d > $HOME/.ssh/id_ed25519
|
||||
- chmod -R 600 ~/.ssh
|
||||
- |
|
||||
cat >$HOME/.ssh/config <<EOL
|
||||
Host git.front.kjuulh.io
|
||||
IdentityFile $HOME/.ssh/id_ed25519
|
||||
IdentitiesOnly yes
|
||||
UserKnownHostsFile=/dev/null
|
||||
StrictHostKeyChecking no
|
||||
EOL
|
||||
- chmod 700 ~/.ssh/config
|
||||
|
||||
- name: build pr
|
||||
image: kasperhermansen/{{bin_name}}:{{image_tag}}
|
||||
volumes:
|
||||
- name: ssh
|
||||
path: /root/.ssh/
|
||||
commands:
|
||||
- eval `ssh-agent`
|
||||
- ssh-add
|
||||
- echo "$DOCKER_PASSWORD" | docker login --password-stdin --username="$DOCKER_USERNAME" docker.io
|
||||
- export CLUSTER=clank-dev
|
||||
- cuddle --version
|
||||
- {{ bin_name }} pr
|
||||
environment:
|
||||
DAGGER_CLOUD_TOKEN:
|
||||
from_secret: dagger_cloud_token
|
||||
DRONE_HOST: "https://ci.i.kjuulh.io"
|
||||
DRONE_USER: "kjuulh"
|
||||
DRONE_TOKEN:
|
||||
from_secret: drone_token
|
||||
REGISTRY_CACHE_USERNAME:
|
||||
from_secret: registry_cache_username
|
||||
REGISTRY_CACHE_PASSWORD:
|
||||
from_secret: registry_cache_password
|
||||
REGISTRY_CACHE_TOKEN:
|
||||
from_secret: registry_cache_token
|
||||
REGISTRY_CACHE_url:
|
||||
from_secret: registry_cache_url
|
||||
DOCKER_BUILDKIT: 1
|
||||
DOCKER_PASSWORD:
|
||||
from_secret: docker_password
|
||||
DOCKER_USERNAME:
|
||||
from_secret: docker_username
|
||||
CUDDLE_SECRETS_PROVIDER: 1password
|
||||
CUDDLE_ONE_PASSWORD_DOT_ENV: ".env.ci"
|
||||
CUDDLE_SSH_AGENT: "true"
|
||||
GIT_PASSWORD:
|
||||
from_secret: git_password
|
||||
CI_PREFIX: "/mnt/ci/ci"
|
||||
DOCKER_HOST: "tcp://192.168.1.155:2376"
|
||||
CUDDLE_PLEASE_TOKEN:
|
||||
from_secret: cuddle_please_token
|
||||
OP_SERVICE_ACCOUNT_TOKEN:
|
||||
from_secret: op_service_account_token
|
||||
when:
|
||||
event:
|
||||
- pull_request
|
||||
depends_on:
|
||||
- "load_secret"
|
||||
|
||||
- name: build main
|
||||
image: kasperhermansen/{{bin_name}}:{{image_tag}}
|
||||
volumes:
|
||||
- name: ssh
|
||||
path: /root/.ssh/
|
||||
commands:
|
||||
- eval `ssh-agent`
|
||||
- ssh-add
|
||||
- echo "$DOCKER_PASSWORD" | docker login --password-stdin --username="$DOCKER_USERNAME" docker.io
|
||||
- export CLUSTER=clank-prod
|
||||
- cuddle --version
|
||||
- {{ bin_name }} main
|
||||
environment:
|
||||
DAGGER_CLOUD_TOKEN:
|
||||
from_secret: dagger_cloud_token
|
||||
DRONE_HOST: "https://ci.i.kjuulh.io"
|
||||
DRONE_USER: "kjuulh"
|
||||
DRONE_TOKEN:
|
||||
from_secret: drone_token
|
||||
REGISTRY_CACHE_USERNAME:
|
||||
from_secret: registry_cache_username
|
||||
REGISTRY_CACHE_PASSWORD:
|
||||
from_secret: registry_cache_password
|
||||
REGISTRY_CACHE_TOKEN:
|
||||
from_secret: registry_cache_token
|
||||
REGISTRY_CACHE_url:
|
||||
from_secret: registry_cache_url
|
||||
DOCKER_BUILDKIT: 1
|
||||
DOCKER_PASSWORD:
|
||||
from_secret: docker_password
|
||||
DOCKER_USERNAME:
|
||||
from_secret: docker_username
|
||||
CUDDLE_SECRETS_PROVIDER: 1password
|
||||
CUDDLE_ONE_PASSWORD_DOT_ENV: ".env.ci"
|
||||
CUDDLE_SSH_AGENT: "true"
|
||||
GIT_PASSWORD:
|
||||
from_secret: git_password
|
||||
CI_PREFIX: "/mnt/ci/ci"
|
||||
DOCKER_HOST: "tcp://192.168.1.155:2376"
|
||||
CUDDLE_PLEASE_TOKEN:
|
||||
from_secret: cuddle_please_token
|
||||
OP_SERVICE_ACCOUNT_TOKEN:
|
||||
from_secret: op_service_account_token
|
||||
when:
|
||||
event:
|
||||
- push
|
||||
branch:
|
||||
- main
|
||||
- master
|
||||
exclude:
|
||||
- pull_request
|
||||
depends_on:
|
||||
- "load_secret"
|
||||
|
||||
volumes:
|
||||
- name: ssh
|
||||
temp: {}
|
||||
|
20
.cuddle/tmp/deployment.yaml
Normal file
20
.cuddle/tmp/deployment.yaml
Normal file
@ -0,0 +1,20 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: "{{ service }}"
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: "{{ service }}"
|
||||
template:
|
||||
spec:
|
||||
containers:
|
||||
- name: "{{ service }}"
|
||||
image: "deployment:latest"
|
||||
ports:
|
||||
- containerPort: 3000
|
||||
name: external_http
|
||||
- containerPort: 3001
|
||||
name: internal_http
|
||||
- containerPort: 3002
|
||||
name: internal_grpc
|
22
.cuddle/tmp/kustomize/base/deployment.yaml
Normal file
22
.cuddle/tmp/kustomize/base/deployment.yaml
Normal file
@ -0,0 +1,22 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: "{{ service }}"
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: "{{ service }}"
|
||||
template:
|
||||
spec:
|
||||
containers:
|
||||
- name: "{{ service }}"
|
||||
command: [{{ service }}]
|
||||
args: ["serve"]
|
||||
image: "deployment:latest"
|
||||
ports:
|
||||
- containerPort: 3000
|
||||
name: external-http
|
||||
- containerPort: 3001
|
||||
name: internal-http
|
||||
- containerPort: 3002
|
||||
name: internal-grpc
|
24
.cuddle/tmp/kustomize/base/kustomization.yaml
Normal file
24
.cuddle/tmp/kustomize/base/kustomization.yaml
Normal file
@ -0,0 +1,24 @@
|
||||
|
||||
{% set_global cluster_vars = filter_by_prefix(prefix=["clusters", cluster]) %}
|
||||
|
||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
|
||||
resources:
|
||||
- deployment.yaml
|
||||
- service.yaml
|
||||
|
||||
commonLabels:
|
||||
app: "{{ service }}"
|
||||
cluster: "{{ cluster }}"
|
||||
|
||||
namespace: "{{ cluster_vars.namespace }}"
|
||||
|
||||
replicas:
|
||||
- name: "{{ service }}"
|
||||
count: {{ cluster_vars.replicas }}
|
||||
|
||||
images:
|
||||
- name: "deployment"
|
||||
newName: "{{ registry }}/{{ service }}"
|
||||
newTag: "{{ image_tag }}"
|
17
.cuddle/tmp/kustomize/base/service.yaml
Normal file
17
.cuddle/tmp/kustomize/base/service.yaml
Normal file
@ -0,0 +1,17 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: "{{ service }}"
|
||||
spec:
|
||||
type: LoadBalancer
|
||||
ports:
|
||||
- name: external-http
|
||||
port: 3000
|
||||
targetPort: 3000
|
||||
- name: internal-http
|
||||
port: 3001
|
||||
targetPort: 3001
|
||||
- name: internal-grpc
|
||||
port: 3002
|
||||
targetPort: 3002
|
||||
|
138
CHANGELOG.md
Normal file
138
CHANGELOG.md
Normal file
@ -0,0 +1,138 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.1.0] - 2025-01-22
|
||||
|
||||
### Added
|
||||
- without node
|
||||
- add stuff
|
||||
|
||||
### Fixed
|
||||
- *(deps)* update material-ui monorepo to v6.4.1
|
||||
- *(deps)* update react-router monorepo to v7.1.3
|
||||
- *(deps)* update dependency dockerode to v4.0.4
|
||||
- *(deps)* update react-router monorepo to v7.1.2
|
||||
- *(deps)* update material-ui monorepo to v6.4.0
|
||||
- *(deps)* update backstage monorepo
|
||||
- *(deps)* update material-ui monorepo to v6.3.1
|
||||
- *(deps)* update material-ui monorepo to v6.3.0
|
||||
- *(deps)* update react-router monorepo to v7.1.1
|
||||
- *(deps)* update react-router monorepo to v7.1.0
|
||||
- *(deps)* update dependency @backstage/plugin-scaffolder to v1.27.3
|
||||
- *(deps)* update backstage monorepo
|
||||
- *(deps)* update material-ui monorepo to v6.2.1
|
||||
- *(deps)* update material-ui monorepo to v6.2.0
|
||||
- *(deps)* update material-ui monorepo to v6.1.10
|
||||
- *(deps)* update react-router monorepo to v7.0.2
|
||||
- *(deps)* update react monorepo to v18.3.1
|
||||
- *(deps)* update react-router monorepo to v7
|
||||
- *(deps)* update material-ui monorepo to v6.1.9
|
||||
- *(deps)* update backstage monorepo
|
||||
- *(deps)* update material-ui monorepo to v6.1.7
|
||||
- *(deps)* update react-router monorepo to v6.28.0
|
||||
- *(deps)* update material-ui monorepo to v6.1.6
|
||||
- *(deps)* update material-ui monorepo to v6.1.5
|
||||
- *(deps)* update backstage monorepo
|
||||
- *(deps)* update dependency @backstage/plugin-scaffolder-backend to v1.26.1
|
||||
- *(deps)* update react-router monorepo to v6.27.0
|
||||
- *(deps)* update backstage monorepo
|
||||
- *(deps)* update material-ui monorepo to v6.1.4
|
||||
- *(deps)* update dependency @backstage/plugin-app-backend to v0.3.75
|
||||
- *(deps)* update material-ui monorepo to v6.1.2
|
||||
- *(deps)* update backstage monorepo
|
||||
- *(deps)* update material-ui monorepo to v6.1.1
|
||||
- *(deps)* update backstage monorepo
|
||||
- *(deps)* update react-router monorepo to v6.26.2
|
||||
- *(deps)* update material-ui monorepo to v6.1.0
|
||||
- *(deps)* update material-ui monorepo to v6.0.1
|
||||
- *(deps)* update backstage monorepo
|
||||
- *(deps)* update backstage monorepo
|
||||
- *(deps)* update material-ui monorepo to v6
|
||||
- *(deps)* update backstage monorepo
|
||||
- *(deps)* update react-router monorepo to v6.26.1
|
||||
- *(deps)* replace all dependencies
|
||||
- *(deps)* update react-router monorepo to v6.24.1
|
||||
- *(deps)* update backstage monorepo
|
||||
- *(deps)* update all dependencies
|
||||
- *(deps)* update react-router monorepo to v6.23.1
|
||||
- *(deps)* update react-router monorepo to v6.23.0
|
||||
- *(deps)* update dependency @backstage/plugin-catalog-backend-module-github to ^0.6.0
|
||||
- *(deps)* update react-router monorepo to v6.22.3
|
||||
- *(deps)* update dependency @material-ui/lab to v4.0.0-alpha.61
|
||||
|
||||
### Other
|
||||
- *(deps)* update dependency @testing-library/user-event to v14.6.1
|
||||
- *(deps)* update dependency better-sqlite3 to v11.8.1
|
||||
- *(deps)* update dependency cypress to v14
|
||||
- *(deps)* update testing-library monorepo
|
||||
- *(deps)* update dependency @types/node to v22.10.7
|
||||
- *(deps)* update dependency better-sqlite3 to v11.8.0
|
||||
- *(deps)* update all dependencies
|
||||
- *(deps)* update dependency @types/node to v22.10.6
|
||||
- *(deps)* update dependency typescript to v5.7.3
|
||||
- *(deps)* update dependency @types/express-serve-static-core to v5.0.4
|
||||
- *(deps)* update dependency @types/dockerode to v3.3.34
|
||||
- *(deps)* update all dependencies
|
||||
- *(deps)* update all dependencies
|
||||
- *(deps)* update dependency @types/node to v22.10.3
|
||||
- *(deps)* update dependency @types/express-serve-static-core to v5.0.3
|
||||
- *(deps)* update dependency concurrently to v9.1.2
|
||||
- *(deps)* update dependency concurrently to v9.1.1
|
||||
- *(deps)* update dependency cross-fetch to v4.1.0
|
||||
- *(deps)* update dependency cypress to v13.17.0
|
||||
- *(deps)* update dependency msw to v2.7.0
|
||||
- *(deps)* update dependency msw to v2.6.9
|
||||
- *(deps)* update dependency @backstage/cli to v0.29.3
|
||||
- *(deps)* update all dependencies
|
||||
- *(deps)* update all dependencies
|
||||
- *(deps)* update all dependencies
|
||||
- *(deps)* update all dependencies
|
||||
- *(deps)* update all dependencies
|
||||
- *(deps)* update dependency @testing-library/react to v16.1.0
|
||||
- *(deps)* update react monorepo to v18.3.13
|
||||
- *(deps)* update all dependencies
|
||||
- *(deps)* update all dependencies
|
||||
- *(deps)* update react monorepo to v18.3.12
|
||||
- *(deps)* update testing-library monorepo
|
||||
- *(deps)* update react monorepo
|
||||
- *(deps)* update dependency @types/jest to v29.5.14
|
||||
- *(deps)* update dependency lerna to v8.1.9
|
||||
- *(deps)* update dependency @backstage/cli to v0.28.2
|
||||
- *(deps)* update backstage monorepo
|
||||
- *(deps)* update backstage monorepo
|
||||
- *(deps)* update all dependencies
|
||||
- *(deps)* update dependency lerna to v8.1.8
|
||||
- *(deps)* update dependency @testing-library/jest-dom to v6.4.8
|
||||
- *(deps)* update testing-library monorepo
|
||||
- *(deps)* update dependency lerna to v8.1.6
|
||||
- *(deps)* update dependency better-sqlite3 to v10
|
||||
- *(deps)* update node.js to v22
|
||||
- *(deps)* update dependency eslint-plugin-cypress to v3
|
||||
- *(deps)* update dependency @testing-library/react to v15
|
||||
- *(deps)* update react monorepo to v18
|
||||
- *(deps)* update dependency lerna to v8
|
||||
- *(deps)* update dependency @types/jest to v29
|
||||
- Merge pull request 'Update all dependencies' (#5) from renovate/all into main
|
||||
|
||||
Reviewed-on: https://git.front.kjuulh.io/kjuulh/backstage/pulls/5
|
||||
|
||||
- *(test)* test commit
|
||||
- Update all dependencies
|
||||
|
||||
- Merge pull request 'Configure Renovate' (#1) from renovate/configure into main
|
||||
|
||||
Reviewed-on: https://git.front.kjuulh.io/kjuulh/backstage/pulls/1
|
||||
|
||||
- Add renovate.json
|
||||
|
||||
- add base setup as well as catalog for gitea
|
||||
|
||||
- without example
|
||||
|
||||
- base
|
||||
|
56
yarn.lock
56
yarn.lock
@ -6742,15 +6742,15 @@
|
||||
resolved "https://registry.yarnpkg.com/@mui/core-downloads-tracker/-/core-downloads-tracker-5.15.15.tgz#2bc2bda50db66c12f10aefec907c48c8f669ef59"
|
||||
integrity sha512-aXnw29OWQ6I5A47iuWEI6qSSUfH6G/aCsW9KmW3LiFqr7uXZBK4Ks+z8G+qeIub8k0T5CMqlT2q0L+ZJTMrqpg==
|
||||
|
||||
"@mui/core-downloads-tracker@^6.4.0":
|
||||
version "6.4.0"
|
||||
resolved "https://registry.yarnpkg.com/@mui/core-downloads-tracker/-/core-downloads-tracker-6.4.0.tgz#b83f3f390d4e692a4f86f413c32f3131da38d492"
|
||||
integrity sha512-6u74wi+9zeNlukrCtYYET8Ed/n9AS27DiaXCZKAD3TRGFaqiyYSsQgN2disW83pI/cM1Q2lJY1JX4YfwvNtlNw==
|
||||
"@mui/core-downloads-tracker@^6.4.1":
|
||||
version "6.4.1"
|
||||
resolved "https://registry.yarnpkg.com/@mui/core-downloads-tracker/-/core-downloads-tracker-6.4.1.tgz#5f9b31768c5be562522c5e5816f3c4f8bada1202"
|
||||
integrity sha512-SfDLWMV5b5oXgDf3NTa2hCTPC1d2defhDH2WgFKmAiejC4mSfXYbyi+AFCLzpizauXhgBm8OaZy9BHKnrSpahQ==
|
||||
|
||||
"@mui/icons-material@^6.0.0":
|
||||
version "6.4.0"
|
||||
resolved "https://registry.yarnpkg.com/@mui/icons-material/-/icons-material-6.4.0.tgz#4e1b74578b6c4987c341c9739f5f40987c44ccd1"
|
||||
integrity sha512-zF0Vqt8a+Zp2Oz8P+WvJflba6lLe3PhxIz1NNqn+n4A+wKLPbkeqY8ShmKjPyiCTg0RMbPrp993oUDl9xGsDlQ==
|
||||
version "6.4.1"
|
||||
resolved "https://registry.yarnpkg.com/@mui/icons-material/-/icons-material-6.4.1.tgz#e12f2a93bd5226aa65258533b7161f156b515b8d"
|
||||
integrity sha512-wsxFcUTQxt4s+7Bg4GgobqRjyaHLmZGNOs+HJpbwrwmLbT6mhIJxhpqsKzzWq9aDY8xIe7HCjhpH7XI5UD6teA==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.26.0"
|
||||
|
||||
@ -6773,15 +6773,15 @@
|
||||
react-transition-group "^4.4.5"
|
||||
|
||||
"@mui/material@^6.0.0":
|
||||
version "6.4.0"
|
||||
resolved "https://registry.yarnpkg.com/@mui/material/-/material-6.4.0.tgz#5f2f09ac66fc9422716056f9b36dd52c9f7cc473"
|
||||
integrity sha512-hNIgwdM9U3DNmowZ8mU59oFmWoDKjc92FqQnQva3Pxh6xRKWtD2Ej7POUHMX8Dwr1OpcSUlT2+tEMeLb7WYsIg==
|
||||
version "6.4.1"
|
||||
resolved "https://registry.yarnpkg.com/@mui/material/-/material-6.4.1.tgz#8f5d027b99928a632654f4161292a6f62ae69257"
|
||||
integrity sha512-MFBfia6UiKxyoLeGkAh8M15bkeDmfnsUTMRJd/vTQue6YQ8AQ6lw9HqDthyYghzDEWIvZO/lQQzLrZE8XwNJLA==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.26.0"
|
||||
"@mui/core-downloads-tracker" "^6.4.0"
|
||||
"@mui/system" "^6.4.0"
|
||||
"@mui/core-downloads-tracker" "^6.4.1"
|
||||
"@mui/system" "^6.4.1"
|
||||
"@mui/types" "^7.2.21"
|
||||
"@mui/utils" "^6.4.0"
|
||||
"@mui/utils" "^6.4.1"
|
||||
"@popperjs/core" "^2.11.8"
|
||||
"@types/react-transition-group" "^4.4.12"
|
||||
clsx "^2.1.1"
|
||||
@ -6799,13 +6799,13 @@
|
||||
"@mui/utils" "^5.15.14"
|
||||
prop-types "^15.8.1"
|
||||
|
||||
"@mui/private-theming@^6.4.0":
|
||||
version "6.4.0"
|
||||
resolved "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-6.4.0.tgz#d17e4bc63462d7b54e71eeb8aa660dab8aa4097c"
|
||||
integrity sha512-rNHci8MP6NOdEWAfZ/RBMO5Rhtp1T6fUDMSmingg9F1T6wiUeodIQ+NuTHh2/pMoUSeP9GdHdgMhMmfsXxOMuw==
|
||||
"@mui/private-theming@^6.4.1":
|
||||
version "6.4.1"
|
||||
resolved "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-6.4.1.tgz#b4085e456edabc5b3fe2d1f777397a907404ad48"
|
||||
integrity sha512-DcT7mwK89owwgcEuiE7w458te4CIjHbYWW6Kn6PiR6eLtxBsoBYphA968uqsQAOBQDpbYxvkuFLwhgk4bxoN/Q==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.26.0"
|
||||
"@mui/utils" "^6.4.0"
|
||||
"@mui/utils" "^6.4.1"
|
||||
prop-types "^15.8.1"
|
||||
|
||||
"@mui/styled-engine@^5.15.14":
|
||||
@ -6844,16 +6844,16 @@
|
||||
csstype "^3.1.3"
|
||||
prop-types "^15.8.1"
|
||||
|
||||
"@mui/system@^6.4.0":
|
||||
version "6.4.0"
|
||||
resolved "https://registry.yarnpkg.com/@mui/system/-/system-6.4.0.tgz#6501ff41bf7bc3e85cd8227fdd249eaa079bc22e"
|
||||
integrity sha512-wTDyfRlaZCo2sW2IuOsrjeE5dl0Usrs6J7DxE3GwNCVFqS5wMplM2YeNiV3DO7s53RfCqbho+gJY6xaB9KThUA==
|
||||
"@mui/system@^6.4.1":
|
||||
version "6.4.1"
|
||||
resolved "https://registry.yarnpkg.com/@mui/system/-/system-6.4.1.tgz#6491bbeae8b10d4f1e38afbec27f586445e05b6e"
|
||||
integrity sha512-rgQzgcsHCTtzF9MZ+sL0tOhf2ZBLazpjrujClcb4Siju5lTrK0xX4PsiropActzCemNfM+mOu+0jezAVnfRK8g==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.26.0"
|
||||
"@mui/private-theming" "^6.4.0"
|
||||
"@mui/private-theming" "^6.4.1"
|
||||
"@mui/styled-engine" "^6.4.0"
|
||||
"@mui/types" "^7.2.21"
|
||||
"@mui/utils" "^6.4.0"
|
||||
"@mui/utils" "^6.4.1"
|
||||
clsx "^2.1.1"
|
||||
csstype "^3.1.3"
|
||||
prop-types "^15.8.1"
|
||||
@ -6878,10 +6878,10 @@
|
||||
prop-types "^15.8.1"
|
||||
react-is "^18.2.0"
|
||||
|
||||
"@mui/utils@^6.4.0":
|
||||
version "6.4.0"
|
||||
resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-6.4.0.tgz#817d8135794b8741ad0267b90dc656361f1c0030"
|
||||
integrity sha512-woOTATWNsTNR3YBh2Ixkj3l5RaxSiGoC9G8gOpYoFw1mZM77LWJeuMHFax7iIW4ahK0Cr35TF9DKtrafJmOmNQ==
|
||||
"@mui/utils@^6.4.1":
|
||||
version "6.4.1"
|
||||
resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-6.4.1.tgz#19e71af7f94a35fe6f43023a4badafc5807ab429"
|
||||
integrity sha512-iQUDUeYh87SvR4lVojaRaYnQix8BbRV51MxaV6MBmqthecQoxwSbS5e2wnbDJUeFxY2ppV505CiqPLtd0OWkqw==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.26.0"
|
||||
"@mui/types" "^7.2.21"
|
||||
|
Loading…
x
Reference in New Issue
Block a user