Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove auto-complete component #1075

Merged
merged 2 commits into from
Dec 8, 2024
Merged
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
48 changes: 2 additions & 46 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"react": ">=17"
},
"dependencies": {
"@zeejs/react": "^0.3.1",
"scroll-into-view-if-needed": "^3.1.0"
},
"files": [
Expand Down
26 changes: 0 additions & 26 deletions packages/components/src/auto-complete/auto-complete.board.tsx

This file was deleted.

22 changes: 0 additions & 22 deletions packages/components/src/auto-complete/auto-complete.st.css

This file was deleted.

118 changes: 0 additions & 118 deletions packages/components/src/auto-complete/auto-complete.tsx

This file was deleted.

1 change: 0 additions & 1 deletion packages/components/src/auto-complete/index.ts

This file was deleted.

2 changes: 0 additions & 2 deletions packages/components/src/board-index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* do no edit manually
*/
import area from './area/boards/area.board';
import auto_complete from './auto-complete/auto-complete.board';
import button from './button/boards/button.board';
import button_with_icon from './button/boards/button-with-icon.board';
import button_with_icons from './button/boards/button-with-icons.board';
Expand Down Expand Up @@ -41,7 +40,6 @@ import with_header from './scroll-list/boards/with-header.board';

export default [
area,
auto_complete,
button,
button_with_icon,
button_with_icons,
Expand Down
1 change: 0 additions & 1 deletion packages/components/src/board-plugins/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
export * from './scenario-plugin/scenario-plugin';
export * from './project-themes-plugin';
export * from './zee-root-plugin';
14 changes: 0 additions & 14 deletions packages/components/src/board-plugins/zee-root-plugin.tsx

This file was deleted.

1 change: 0 additions & 1 deletion packages/components/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
export * from './area';
export * from './auto-complete';
export * from './button';
export * from './common';
export * from './data-grid';
Expand Down
12 changes: 0 additions & 12 deletions packages/components/src/themes/white.st.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
@st-import [cancel, emphasis] from "../button/variants.st.css";
@st-import Area from "../area/area.st.css";
@st-import [floating] from "../area/variants.st.css";
@st-import [popover, scrollListRoot] from "../auto-complete/auto-complete.st.css";
@st-import ScrollList from "../scroll-list/scroll-list.st.css";
@st-import InputWithClear from "../input-with-clear/input-with-clear.st.css";
@st-import [primary-2, primary-3, primary-4, primary-7, reference-1, notification-warning-1, primary-6, primary-0, primary-5] from "./colors.st.css";
Expand Down Expand Up @@ -84,19 +83,8 @@
border-radius: 3px;
}

.popover {
padding-left: 4px;
padding-right: 4px;
padding-bottom: 4px;

}

.InputWithClear::clear {
-st-mixin: small;
}

.scrollListRoot {
max-height: 30vh;

}
}
Loading