Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,354 changes: 533 additions & 821 deletions package-lock.json

Large diffs are not rendered by default.

14 changes: 6 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,10 @@
"escape-html": "^1.0.3",
"lit": "^3.3.3",
"mime-types": "^3.0.2",
"pane-registry": "3.1.2-0",
"rdflib": "2.3.9",
"solid-logic": "4.0.8-0",
"pane-registry": "^3.1.2-1",
"rdflib": "^2.3.9",
"solid-logic": "^4.0.8-1",
"solid-namespace": "^0.5.4",
"tailwindcss": "4.3.0",
"uuid": "^14.0.0"
},
"devDependencies": {
Expand All @@ -112,7 +111,6 @@
"@babel/preset-typescript": "^7.28.5",
"@eslint/js": "^9.39.4",
"@iconify/json": "2.2.481",
"@mdx-js/react": "^3.1.1",
"@rolldown/plugin-babel": "^0.2.3",
"@storybook/addon-docs": "10.4.2",
"@storybook/addon-links": "10.4.2",
Expand Down Expand Up @@ -140,16 +138,16 @@
"patch-package": "^8.0.1",
"path-browserify": "^1.0.1",
"postcss": "^8.5.15",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"solidos-toolkit": "dev",
"storybook": "10.4.2",
"tailwindcss": "4.3.0",
"typedoc": "^0.28.19",
"typescript": "^5.9.3",
"unplugin-dts": "^1.0.2",
"unplugin-icons": "^23.0.1",
"vite": "^8.0.16",
"vite-plugin-lit-css": "^3.0.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18"
},
"optionalDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/account/Account.styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
gap: 10px;
}

:host(:state(loggedIn)) {
:host([data-state-loggedIn]) {
--padding: 4px;
--border-width: 1px;
--image-size: 1.875rem; /* 30px */
Expand Down
2 changes: 1 addition & 1 deletion src/components/avatar/Avatar.styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}
}

:host(:state(fallback)) {
:host([data-state-fallback]) {
background: var(--solid-ui-color-gray-100);
justify-content: center;
align-items: center;
Expand Down
36 changes: 19 additions & 17 deletions src/components/combobox/Combobox.styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,21 @@
font-weight: 400;
}

wa-popup {
display: block;
width: 100%;
}

wa-popup::part(popup) {
background: white;
border: 1px solid var(--solid-ui-color-gray-100);
border-radius: 5px;
box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.35);
overflow: hidden;
}

.input-wrapper {
position: relative;
anchor-name: --combobox-anchor;
width: 100%;

input {
Expand All @@ -35,32 +47,22 @@
}
}

[popover]:popover-open {
position: fixed;
top: calc(anchor(bottom) + 5px);
left: anchor(left);
right: auto;
bottom: auto;
min-width: anchor-size(width);
overflow: visible;
position-try-fallbacks: flip-block, flip-inline;
position-anchor: --combobox-anchor;
background: white;
border: 1px solid var(--solid-ui-color-gray-100);
border-radius: 5px;
box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.35);
.listbox {
display: flex;
flex-direction: column;
max-height: inherit;
overflow: auto;

[role="option"] {
padding: 12px 8px;
color: var(--solid-ui-color-gray-700);
border-bottom: 1px solid var(--solid-ui-color-gray-100);
cursor: pointer;

&:hover {
&:hover,
&[data-active] {
background: rgba(0, 0, 0, 0.05);
}
}
}

}
Loading
Loading