Skip to content

Commit

Permalink
fix: exports for experience controls
Browse files Browse the repository at this point in the history
  • Loading branch information
CachedaCodes committed Oct 4, 2023
1 parent 6b68219 commit 9f1e010
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/x-components/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ export * from './x-modules/search-box';
export * from './x-modules/semantic-queries';
export * from './x-modules/tagging';
export * from './x-modules/url';
export * from './x-modules/experience-controls';
export * from './x-modules/x-modules.types';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as ExperienceControls } from './experience-controls.vue';
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export * from './components';
export * from './events.types';
export * from './store';
export * from './wiring';
export * from './x-module';
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ const { fetchAndSave, cancelPrevious } = createFetchAndSaveActions<
});

/**
* Default implementation for {@link ExperienceControlsActions.fetchAndSaveControls} action.
* Default implementation for fetchAndSaveExperienceControls action.
*
* @public
*/
export const fetchAndSaveExperienceControlsResponse = fetchAndSave;

/**
* Default implementation for {@link ExperienceControlsActions.cancelFetchAndSaveControls} action.
* Default implementation for fetchAndSaveExperienceControls action.
*
* @public
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from './fetch-and-save-experience-controls.action';
export * from './fetch-experience-controls.action';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './experience-controls-results-request.getter';
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export * from './actions';
export * from './emitters';
export * from './getters';
export * from './module';
export * from './types';
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ export interface ExperienceControlsMutations extends StatusMutations {
setParams(params: Dictionary<unknown>): void;
}

/**
* Experience Controls store actions.
*
* @public
*/
export interface ExperienceControlsActions {
/**.
* Requests the experience controls
Expand Down

0 comments on commit 9f1e010

Please sign in to comment.