Skip to content

Commit

Permalink
Merge pull request #8 from shoutout-labs/development-madura
Browse files Browse the repository at this point in the history
Development madura
  • Loading branch information
asanka-x authored Sep 8, 2021
2 parents dd4cbc1 + 55dd454 commit b8441d0
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useCallback, useMemo } from "react";
import { Form } from '@shoutout-labs/shoutout-themes-enterprise';
import { Form } from "@shoutout-labs/shoutout-themes-enterprise";

export default ({ items, setField, selectedKey, readonly, ...rest }) => {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useMemo } from "react";
import { Form } from '@shoutout-labs/shoutout-themes-enterprise';
import { Form } from "@shoutout-labs/shoutout-themes-enterprise";

export default ({ config, valueSources, valueSrc, title, setValueSrc, readonly }) => {
// const renderOptions = (valueSources) => (
Expand Down
2 changes: 1 addition & 1 deletion modules/components/widgets/vanilla/value/VanillaNumber.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { Form } from '@shoutout-labs/shoutout-themes-enterprise';
import { Form } from "@shoutout-labs/shoutout-themes-enterprise";
export default (props) => {
const { value, setValue, config, readonly, min, max, step, placeholder } = props;
const onChange = e => {
Expand Down
2 changes: 1 addition & 1 deletion modules/components/widgets/vanilla/value/VanillaSelect.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
// import { mapListValues } from "../../../../utils/stuff";
import { Form } from '@shoutout-labs/shoutout-themes-enterprise';
import { Form } from "@shoutout-labs/shoutout-themes-enterprise";
export default ({ listValues, value, setValue, allowCustomValues, readonly }) => {
// const renderOptions = () =>
// mapListValues(listValues, ({title, value}) => {
Expand Down
2 changes: 1 addition & 1 deletion modules/components/widgets/vanilla/value/VanillaSlider.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { Form } from '@shoutout-labs/shoutout-themes-enterprise';
import { Form } from "@shoutout-labs/shoutout-themes-enterprise";
export default (props) => {
const {value, setValue, config, readonly, min, max, step, placeholder} = props;
const onChange = e => {
Expand Down
2 changes: 1 addition & 1 deletion modules/components/widgets/vanilla/value/VanillaText.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { Form } from '@shoutout-labs/shoutout-themes-enterprise';
import { Form } from "@shoutout-labs/shoutout-themes-enterprise";
export default (props) => {
const { value, setValue, config, readonly, placeholder, maxLength } = props;
const onChange = e => {
Expand Down
2 changes: 1 addition & 1 deletion modules/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import * as Operators from "./components/operators";
import * as BasicUtils from "./utils";
import * as BasicFuncs from "./config/funcs";

import '@shoutout-labs/shoutout-themes-enterprise/lib/themes/enterprise-loyalty/bootstrap.min.css'

const Utils = {...BasicUtils, ...Export, ...Import};
export {Widgets, Operators, Utils, Export, Import, BasicFuncs};

Expand Down

0 comments on commit b8441d0

Please sign in to comment.