Skip to content

Commit e1df70d

Browse files
committed
fix: remove packages path, and move to src directory
Signed-off-by: Antonette Caldwell <134739862+nebula-aac@users.noreply.github.com>
1 parent dfee50e commit e1df70d

24 files changed

Lines changed: 104 additions & 106 deletions

File tree

packages/components/src/utils/typing.utils.ts

Lines changed: 0 additions & 97 deletions
This file was deleted.

packages/components/src/custom/TypingFilter/TypingFIlterInput.tsx renamed to src/custom/TypingFilter/TypingFIlterInput.tsx

File renamed without changes.
File renamed without changes.

packages/components/src/custom/TypingFilter/TypingFilterSuggestions.tsx renamed to src/custom/TypingFilter/TypingFilterSuggestions.tsx

File renamed without changes.

packages/components/src/custom/TypingFilter/index.tsx renamed to src/custom/TypingFilter/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ import {
1010
FilteringState,
1111
filterReducer
1212
} from '../../utils/typing.state';
13+
import { getFilters } from '../../utils/typing.utils';
1314
import TypingFilterInput from './TypingFIlterInput';
1415
import { TypingFilters } from './TypingFIlters';
1516
import { TypingFilterValueSuggestions } from './TypingFilterSuggestions';
16-
import { getFilters } from '../../utils/typing.utils';
1717

1818
interface TypingFilterType {
1919
filterSchema: FilterSchema;

src/custom/readme.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,9 @@ This custom React component, `ResponsiveDataTable`, is a wrapper around the Mate
3535

3636
### Standard Props
3737

38-
| Property | Type | Description |
39-
| -------- | -------- | ----------------------------------------------------------------------------------------------------------- |
40-
| `rowsPerPageOptions` | `number[]` | (Optional) Array of numbers representing the number of rows per page. If not provided, the default values will be used(20, 50, 100). |
41-
38+
| Property | Type | Description |
39+
| -------------------- | ---------- | ------------------------------------------------------------------------------------------------------------------------------------ |
40+
| `rowsPerPageOptions` | `number[]` | (Optional) Array of numbers representing the number of rows per page. If not provided, the default values will be used(20, 50, 100). |
4241

4342
### Customization
4443

src/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ export * from './base';
22
export * from './colors';
33
export * from './custom';
44
export * from './icons';
5+
export * from './schemas';
56
export * from './theme';

packages/components/src/schemas/createAndEditEnvironment/schema.tsx renamed to src/schemas/createAndEditEnvironment/schema.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,16 @@ const createAndEditEnvironmentSchema = {
99
'x-rjsf-grid-area': '12'
1010
},
1111
name: {
12-
description: "Enter a unique and meaningful name for the environment. Remember you can change name of environment after it's creation too",
12+
description:
13+
"Enter a unique and meaningful name for the environment. Remember you can change name of environment after it's creation too",
1314
title: 'Name',
1415
type: 'string',
1516
'x-rjsf-grid-area': '12'
1617
},
1718
organization: {
1819
type: 'string',
1920
title: 'Organization',
20-
description: "Select a organization in whic",
21+
description: 'Select a organization in whic',
2122
enum: [],
2223
enumNames: [],
2324
'x-rjsf-grid-area': '12'

packages/components/src/schemas/createAndEditEnvironment/uiSchema.tsx renamed to src/schemas/createAndEditEnvironment/uiSchema.tsx

File renamed without changes.

packages/components/src/schemas/createAndEditWorkspace/schema.tsx renamed to src/schemas/createAndEditWorkspace/schema.tsx

File renamed without changes.

0 commit comments

Comments
 (0)