@fmfi-uk-1-ain-412/structure-explorer 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/dist/app/hooks.d.ts +2 -1
  2. package/dist/app/store.d.ts +4 -0
  3. package/dist/common/formulas.d.ts +585 -0
  4. package/dist/components_helper/MessageBubble.d.ts +2 -1
  5. package/dist/features/databaseView/databaseViewSlice.d.ts +1 -0
  6. package/dist/features/editorToolbar/components/DomainSelector.d.ts +2 -1
  7. package/dist/features/editorToolbar/components/EditorToolbar.d.ts +3 -1
  8. package/dist/features/editorToolbar/components/InterpretationFilters.d.ts +3 -1
  9. package/dist/features/editorToolbar/editorToolbarSlice.d.ts +136 -0
  10. package/dist/features/formulas/formulasSlice.d.ts +247 -55
  11. package/dist/features/graphView/graphs/graphComponents/PredicateNode.d.ts +1 -0
  12. package/dist/features/graphView/graphs/graphSlice.d.ts +9 -0
  13. package/dist/features/graphView/graphs/listeners.d.ts +2 -0
  14. package/dist/features/import/validationSchema.d.ts +8 -0
  15. package/dist/features/language/languageSlice.d.ts +19 -0
  16. package/dist/features/matrixView/MatrixViewCells.d.ts +4 -2
  17. package/dist/features/matrixView/matrixViewSelectors.d.ts +1 -0
  18. package/dist/features/queries/QueriesComponent.d.ts +1 -0
  19. package/dist/features/queries/QueryComponent.d.ts +4 -0
  20. package/dist/features/queries/QueryResults.d.ts +9 -0
  21. package/dist/features/queries/listeners.d.ts +25 -0
  22. package/dist/features/queries/queriesSlice.d.ts +1786 -0
  23. package/dist/features/queries/validationSchema.d.ts +11 -0
  24. package/dist/features/structure/structureSlice.d.ts +24 -0
  25. package/dist/features/textView/textViewSlice.d.ts +1 -0
  26. package/dist/features/variables/variablesSlice.d.ts +5 -0
  27. package/dist/model/formula/Formula.EqualityAtom.d.ts +5 -2
  28. package/dist/model/formula/Formula.Negation.d.ts +2 -1
  29. package/dist/model/formula/Formula.PredicateAtom.d.ts +5 -2
  30. package/dist/model/formula/Formula.d.ts +1 -0
  31. package/dist/model/formula/QuantifiedFormula.d.ts +1 -0
  32. package/dist/model/term/Term.Constant.d.ts +2 -2
  33. package/dist/structure-explorer.css +1 -1
  34. package/dist/structure-explorer.es.js +35825 -35504
  35. package/dist/structure-explorer.umd.js +92 -92
  36. package/package.json +1 -1
@@ -1,4 +1,5 @@
1
1
  import { TypedUseSelectorHook } from 'react-redux';
2
- import { AppDispatch, RootState } from './store';
2
+ import { AppDispatch, AppStore, RootState } from './store';
3
3
  export declare const useAppDispatch: () => AppDispatch;
4
4
  export declare const useAppSelector: TypedUseSelectorHook<RootState>;
5
+ export declare const useAppStore: () => AppStore;
@@ -1,6 +1,7 @@
1
1
  import { Action, Middleware, ThunkAction } from '@reduxjs/toolkit';
2
2
  declare const rootReducer: {
3
3
  formulas: import('redux').Reducer<import('../features/formulas/formulasSlice').FormulasState>;
4
+ queries: import('redux').Reducer<import('../features/queries/queriesSlice.ts').QueriesState>;
4
5
  language: import('redux').Reducer<import('../features/language/languageSlice').LanguageState>;
5
6
  structure: import('redux').Reducer<import('../features/structure/structureSlice').StructureState>;
6
7
  variables: import('redux').Reducer<import('../features/variables/variablesSlice').VariablesState>;
@@ -13,6 +14,7 @@ declare const rootReducer: {
13
14
  };
14
15
  declare const undoReducer: import('redux').Reducer<import('redux-undo').StateWithHistory<{
15
16
  formulas: import('../features/formulas/formulasSlice').FormulasState;
17
+ queries: import('../features/queries/queriesSlice.ts').QueriesState;
16
18
  language: import('../features/language/languageSlice').LanguageState;
17
19
  structure: import('../features/structure/structureSlice').StructureState;
18
20
  variables: import('../features/variables/variablesSlice').VariablesState;
@@ -25,6 +27,7 @@ declare const undoReducer: import('redux').Reducer<import('redux-undo').StateWit
25
27
  }>, import('redux').UnknownAction>;
26
28
  export declare const createStore: (extraMiddleware?: Middleware) => import('@reduxjs/toolkit').EnhancedStore<import('redux-undo').StateWithHistory<{
27
29
  formulas: import('../features/formulas/formulasSlice').FormulasState;
30
+ queries: import('../features/queries/queriesSlice.ts').QueriesState;
28
31
  language: import('../features/language/languageSlice').LanguageState;
29
32
  structure: import('../features/structure/structureSlice').StructureState;
30
33
  variables: import('../features/variables/variablesSlice').VariablesState;
@@ -37,6 +40,7 @@ export declare const createStore: (extraMiddleware?: Middleware) => import('@red
37
40
  }>, import('redux').UnknownAction, import('@reduxjs/toolkit').Tuple<[import('redux').StoreEnhancer<{
38
41
  dispatch: ((action: Action<"listenerMiddleware/add">) => import('@reduxjs/toolkit').UnsubscribeListener) & import('redux-thunk').ThunkDispatch<import('redux-undo').StateWithHistory<{
39
42
  formulas: import('../features/formulas/formulasSlice').FormulasState;
43
+ queries: import('../features/queries/queriesSlice.ts').QueriesState;
40
44
  language: import('../features/language/languageSlice').LanguageState;
41
45
  structure: import('../features/structure/structureSlice').StructureState;
42
46
  variables: import('../features/variables/variablesSlice').VariablesState;