Skip to content
Open
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
35 changes: 34 additions & 1 deletion src/ui/components/Elements/Elements.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import { useState, useEffect } from 'react';
import { Input } from 'react-figma-ui';
import {
Input,
// Onboarding
} from 'react-figma-ui';

import { Configurator } from '../Configurator/Configurator';
import { availableOptions } from '../../../shared/constants/availableOptions';
Expand Down Expand Up @@ -37,6 +40,36 @@ export const Elements = () => {
return (
// TODO classnames
<div className={configurators.length > 0 ? undefined : styles.fullLayout}>
{/* TODO move inline texts */}
{/* <Onboarding iconProps={{ iconName: 'minus' }}>
Select Parts, Nodes and Paints to invert. You can use search field to
filter options. By clicking on group heading e.g.: Paints you can toggle
all visible items for group.
</Onboarding> */}

{/* TODO */}
{/* TODO move inline texts */}
{/* <Onboarding iconProps={{ iconName: 'close' }}>
Select Parts, Nodes and Paints to invert.
</Onboarding> */}

{/* TODO move inline texts */}
{/* <Onboarding iconProps={{ iconName: 'close' }}>
You can use search field to filter options. By clicking on group heading
e.g.: Paints you can toggle all visible items for group.
</Onboarding> */}

{/* TODO move inline texts */}
{/* <Onboarding iconProps={{ iconName: 'close' }}>
By clicking on group heading e.g.: Paints you can toggle all visible
items for group.
</Onboarding> */}

{/* TODO move inline texts */}
{/* <Onboarding iconProps={{ iconName: 'close' }}>
Cancel, Save, Save & Invert
</Onboarding> */}

<div className={styles.toolbar}>
<Input
value={searchValue}
Expand Down