@mixd-id/web-scaffold 0.1.240411074 → 0.1.240411076
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/package.json
CHANGED
|
@@ -1315,6 +1315,7 @@ const syntaxSearchToSequelizeOpt = async(search, opt = {}) => {
|
|
|
1315
1315
|
}
|
|
1316
1316
|
|
|
1317
1317
|
const presetToSequelizeList = async(preset, {
|
|
1318
|
+
attributes,
|
|
1318
1319
|
conn,
|
|
1319
1320
|
model,
|
|
1320
1321
|
config,
|
|
@@ -1424,6 +1425,7 @@ const presetToSequelizeList = async(preset, {
|
|
|
1424
1425
|
const { where:afterItemWhere } = await afterItemToSequelizeWhere(order, afterItem)
|
|
1425
1426
|
|
|
1426
1427
|
return {
|
|
1428
|
+
attributes,
|
|
1427
1429
|
where: {
|
|
1428
1430
|
[Op.and]: [
|
|
1429
1431
|
initialWhere ?? {},
|
|
@@ -395,6 +395,7 @@ export default{
|
|
|
395
395
|
['Anton', '"Anton", sans-serif'],
|
|
396
396
|
['Arial', '"Arial", sans-serif'],
|
|
397
397
|
['Dosis', 'Dosis, sans-serif'],
|
|
398
|
+
['Inter', 'Inter, sans-serif'],
|
|
398
399
|
['Lato', 'Lato, sans-serif'],
|
|
399
400
|
['Merriweather', 'Merriweather, sans-serif'],
|
|
400
401
|
['Montserrat', 'Montserrat, sans-serif'],
|
|
@@ -749,6 +749,7 @@ export default{
|
|
|
749
749
|
const fontFamilies = {
|
|
750
750
|
'"Anton", sans-serif': `@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');`,
|
|
751
751
|
'Dosis, sans-serif': `@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@400;700&display=swap');`,
|
|
752
|
+
'Inter, sans-serif': `@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');`,
|
|
752
753
|
'Lato, sans-serif': `@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');`,
|
|
753
754
|
'Merriweather, sans-serif': `@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');`,
|
|
754
755
|
'Montserrat, sans-serif': `@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');`,
|