@bigbinary/neeto-themes-frontend 2.1.6 → 2.1.7
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.
- package/dist/NeetoThemesBuilder.js +8 -2
- package/dist/NeetoThemesBuilder.js.map +1 -1
- package/dist/cjs/NeetoThemesBuilder.js +104 -131
- package/dist/cjs/NeetoThemesBuilder.js.map +1 -1
- package/dist/cjs/hooks.js +2 -4
- package/dist/cjs/hooks.js.map +1 -1
- package/dist/cjs/index.js +2 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/utils.js +1 -3
- package/dist/cjs/utils.js.map +1 -1
- package/dist/hooks.js +2 -2
- package/dist/{index-26ff400e.js → index-CvV1tFYS.js} +2 -2
- package/dist/{index-26ff400e.js.map → index-CvV1tFYS.js.map} +1 -1
- package/dist/{index-a1b56b54.js → index-D6l2IgrM.js} +4 -10
- package/dist/index-D6l2IgrM.js.map +1 -0
- package/dist/index.js +2 -2
- package/dist/{useThemeUtils-ecaaa94b.js → useThemeUtils-VrVvqk7M.js} +3 -7
- package/dist/{useThemeUtils-ecaaa94b.js.map → useThemeUtils-VrVvqk7M.js.map} +1 -1
- package/dist/{useThemeUtils-d305cede.js → useThemeUtils-j1OwYSmN.js} +2 -2
- package/dist/{useThemeUtils-d305cede.js.map → useThemeUtils-j1OwYSmN.js.map} +1 -1
- package/dist/utils.js +1 -1
- package/package.json +19 -18
- package/dist/index-a1b56b54.js.map +0 -1
|
@@ -6,8 +6,8 @@ import { useMutationWithInvalidation, withT, useBreakpoints, withTitle } from '@
|
|
|
6
6
|
import Spinner from '@bigbinary/neetoui/Spinner';
|
|
7
7
|
import { useQuery } from '@tanstack/react-query';
|
|
8
8
|
import axios from 'axios';
|
|
9
|
-
import { B as BASE_URL,
|
|
10
|
-
import { Q as QUERY_KEYS, a as useConfigStore, b as useThemeStore, u as useThemeUtils } from './useThemeUtils-
|
|
9
|
+
import { B as BASE_URL, b as scrollElementIntoView, c as setCustomCSS, g as getDominantColorFromUrl, i as isFunction } from './index-CvV1tFYS.js';
|
|
10
|
+
import { Q as QUERY_KEYS, a as useConfigStore, b as useThemeStore, u as useThemeUtils } from './useThemeUtils-j1OwYSmN.js';
|
|
11
11
|
import _slicedToArray from '@babel/runtime/helpers/slicedToArray';
|
|
12
12
|
import classnames from 'classnames';
|
|
13
13
|
import Collapse from '@bigbinary/neeto-icons/Collapse';
|
|
@@ -228,6 +228,12 @@ var FONT_OPTIONS = [{
|
|
|
228
228
|
}, {
|
|
229
229
|
label: "Dancing Script",
|
|
230
230
|
value: "Dancing Script, cursive"
|
|
231
|
+
}, {
|
|
232
|
+
label: "Tw Cent",
|
|
233
|
+
value: "Tw Cen MT, Tahoma, sans-serif"
|
|
234
|
+
}, {
|
|
235
|
+
label: "Comic Sans",
|
|
236
|
+
value: "Comic Sans MS, cursive"
|
|
231
237
|
}];
|
|
232
238
|
var THEME_VALIDATION_SCHEMA = yup.object().shape({
|
|
233
239
|
name: yup.string().required("Name is required")
|