Skip to content

Commit

Permalink
Added tasks-list static page module
Browse files Browse the repository at this point in the history
  • Loading branch information
zonia3000 committed Dec 9, 2024
1 parent c017256 commit e40097c
Show file tree
Hide file tree
Showing 13 changed files with 3,519 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ node_modules
/build
/components/build
/sandbox/build
/tasks-list/build
.svelte-kit
/package
.env.*local
Expand Down
4 changes: 3 additions & 1 deletion components/src/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { deepCopy, getValidationErrorMessage, stripNullAndEmptyObjectsAndArrays
import { getPropertiesToIgnore } from './jschema/property_utils';
import { JsonSchemaDataError } from './jschema/form_manager';
import { stripIgnoredProperties } from './jschema/jschema_adapter';
import FilteredTasksTable from './tasks/FilteredTasksTable.svelte';

// Exporting components for public usage
export {
Expand All @@ -17,5 +18,6 @@ export {
JsonSchemaDataError,
getValidationErrorMessage,
PropertyDescription,
detectSchemaVersion
detectSchemaVersion,
FilteredTasksTable
};
2 changes: 1 addition & 1 deletion sandbox/src/lib/components/TaskManifestSandbox.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
stripNullAndEmptyObjectsAndArrays
} from 'fractal-components';
import manifestSchema from './manifest_v2.json';
import { adaptJsonSchema } from 'fractal-components/components/jschema_adapter';
import { adaptJsonSchema } from 'fractal-components/jschema/jschema_adapter';
import { tick } from 'svelte';
import DragAndDropUploader from './DragAndDropUploader.svelte';
Expand Down
Loading

0 comments on commit e40097c

Please sign in to comment.