@admin-layout/tailwind-design-pro 10.0.9-alpha.68 → 10.0.9-alpha.69
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.
|
@@ -26,14 +26,14 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
26
26
|
const handleRegionChange = (key, value) => {
|
|
27
27
|
if (!changeSetting) return;
|
|
28
28
|
changeSetting(`routeSettings.${currentRoute}.regions.${deviceType}.header`, {
|
|
29
|
-
...regions[deviceType]
|
|
29
|
+
...regions[deviceType]?.header,
|
|
30
30
|
[key]: value
|
|
31
31
|
});
|
|
32
32
|
};
|
|
33
33
|
const handleRegionFooterChange = (key, value) => {
|
|
34
34
|
if (!changeSetting) return;
|
|
35
35
|
changeSetting(`routeSettings.${currentRoute}.regions.${deviceType}.footer`, {
|
|
36
|
-
...regions[deviceType]
|
|
36
|
+
...regions[deviceType]?.footer,
|
|
37
37
|
[key]: value
|
|
38
38
|
});
|
|
39
39
|
};
|
|
@@ -47,12 +47,12 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
47
47
|
const handleHeaderChange = (element, value) => {
|
|
48
48
|
if (!changeSetting) return;
|
|
49
49
|
changeSetting(`routeSettings.${currentRoute}.regions.${deviceType}.header`, {
|
|
50
|
-
...regions[deviceType]
|
|
50
|
+
...regions[deviceType]?.header,
|
|
51
51
|
[element]: value
|
|
52
52
|
});
|
|
53
53
|
};
|
|
54
|
-
const header = regions[deviceType]
|
|
55
|
-
const background = regions[deviceType]
|
|
54
|
+
const header = regions[deviceType]?.header;
|
|
55
|
+
const background = regions[deviceType]?.background;
|
|
56
56
|
// Helper function to render background settings based on current active tab
|
|
57
57
|
const renderBackgroundSettings = () => {
|
|
58
58
|
return jsxs(Fragment, {
|
|
@@ -67,7 +67,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
67
67
|
}), jsxs("div", {
|
|
68
68
|
className: "flex mb-3 rounded-lg overflow-hidden border border-gray-200 divide-x divide-gray-200 bg-gray-50",
|
|
69
69
|
children: [jsxs("button", {
|
|
70
|
-
className: `flex-1 py-2 px-3 text-sm font-medium transition-colors duration-200 flex items-center justify-center ${background
|
|
70
|
+
className: `flex-1 py-2 px-3 text-sm font-medium transition-colors duration-200 flex items-center justify-center ${background?.type === 'color' ? 'bg-blue-500 text-white' : 'bg-white text-gray-700 hover:bg-gray-100'}`,
|
|
71
71
|
onClick: () => handleBackgroundChange('type', 'color'),
|
|
72
72
|
children: [jsx("span", {
|
|
73
73
|
className: "mr-1",
|
|
@@ -91,7 +91,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
91
91
|
})
|
|
92
92
|
}), t('color')]
|
|
93
93
|
}), jsxs("button", {
|
|
94
|
-
className: `flex-1 py-2 px-3 text-sm font-medium transition-colors duration-200 flex items-center justify-center ${background
|
|
94
|
+
className: `flex-1 py-2 px-3 text-sm font-medium transition-colors duration-200 flex items-center justify-center ${background?.type === 'image' ? 'bg-blue-500 text-white' : 'bg-white text-gray-700 hover:bg-gray-100'}`,
|
|
95
95
|
onClick: () => handleBackgroundChange('type', 'image'),
|
|
96
96
|
children: [jsx("span", {
|
|
97
97
|
className: "mr-1",
|
|
@@ -122,7 +122,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
122
122
|
})
|
|
123
123
|
}), t('image')]
|
|
124
124
|
}), jsxs("button", {
|
|
125
|
-
className: `flex-1 py-2 px-3 text-sm font-medium transition-colors duration-200 flex items-center justify-center ${background
|
|
125
|
+
className: `flex-1 py-2 px-3 text-sm font-medium transition-colors duration-200 flex items-center justify-center ${background?.type === 'video' ? 'bg-blue-500 text-white' : 'bg-white text-gray-700 hover:bg-gray-100'}`,
|
|
126
126
|
onClick: () => handleBackgroundChange('type', 'video'),
|
|
127
127
|
children: [jsx("span", {
|
|
128
128
|
className: "mr-1",
|
|
@@ -150,7 +150,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
150
150
|
}), t('video')]
|
|
151
151
|
})]
|
|
152
152
|
})]
|
|
153
|
-
}), background
|
|
153
|
+
}), background?.type === 'color' && jsxs("div", {
|
|
154
154
|
className: "mb-4",
|
|
155
155
|
children: [jsx("p", {
|
|
156
156
|
className: "mb-2",
|
|
@@ -163,13 +163,13 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
163
163
|
children: [jsx("div", {
|
|
164
164
|
className: "w-12 h-12 rounded-lg border border-gray-300 mr-3 flex-shrink-0 shadow-sm",
|
|
165
165
|
style: {
|
|
166
|
-
backgroundColor: background
|
|
166
|
+
backgroundColor: background?.color === 'inherit' ? '#ffffff' : background?.color || '#ffffff'
|
|
167
167
|
}
|
|
168
168
|
}), jsx("div", {
|
|
169
169
|
className: "flex-grow",
|
|
170
170
|
children: jsx("input", {
|
|
171
171
|
type: "color",
|
|
172
|
-
value: background
|
|
172
|
+
value: background?.color === 'inherit' ? '#ffffff' : background?.color || '#ffffff',
|
|
173
173
|
onChange: e => handleBackgroundChange('color', e.target.value),
|
|
174
174
|
className: "w-full h-10 rounded cursor-pointer"
|
|
175
175
|
})
|
|
@@ -177,7 +177,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
177
177
|
}), jsx("div", {
|
|
178
178
|
className: "flex flex-wrap gap-2 mt-3",
|
|
179
179
|
children: ['#ffffff', '#f2f2f2', '#e6e6e6', '#1890ff', '#52c41a', '#faad14', '#f5222d', '#722ed1'].map(color => jsx("button", {
|
|
180
|
-
className: `w-8 h-8 rounded-full border ${color === (background
|
|
180
|
+
className: `w-8 h-8 rounded-full border ${color === (background?.color || '#ffffff') ? 'border-blue-500 border-2' : 'border-gray-300'}`,
|
|
181
181
|
style: {
|
|
182
182
|
backgroundColor: color
|
|
183
183
|
},
|
|
@@ -185,7 +185,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
185
185
|
"aria-label": `Select color ${color}`
|
|
186
186
|
}, color))
|
|
187
187
|
})]
|
|
188
|
-
}), background
|
|
188
|
+
}), background?.type === 'image' && jsxs("div", {
|
|
189
189
|
className: "mb-2",
|
|
190
190
|
children: [jsx("div", {
|
|
191
191
|
className: "flex items-center mb-1",
|
|
@@ -198,13 +198,13 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
198
198
|
}), jsx("input", {
|
|
199
199
|
type: "text",
|
|
200
200
|
placeholder: t('image_url'),
|
|
201
|
-
value: background
|
|
201
|
+
value: background?.image || '',
|
|
202
202
|
onChange: e => handleBackgroundChange('image', e.target.value),
|
|
203
203
|
className: "w-full p-1 text-sm border border-gray-300 rounded"
|
|
204
|
-
}), background
|
|
204
|
+
}), background?.image && jsx("div", {
|
|
205
205
|
className: "mt-2 p-1 border border-gray-300 rounded",
|
|
206
206
|
children: jsx("img", {
|
|
207
|
-
src: background
|
|
207
|
+
src: background?.image,
|
|
208
208
|
alt: "Background preview",
|
|
209
209
|
className: "w-full h-24 object-cover",
|
|
210
210
|
onError: e => {
|
|
@@ -213,7 +213,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
213
213
|
}
|
|
214
214
|
})
|
|
215
215
|
})]
|
|
216
|
-
}), background
|
|
216
|
+
}), background?.type === 'video' && jsxs("div", {
|
|
217
217
|
className: "mb-2",
|
|
218
218
|
children: [jsx("div", {
|
|
219
219
|
className: "flex items-center mb-1",
|
|
@@ -226,7 +226,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
226
226
|
}), jsx("input", {
|
|
227
227
|
type: "text",
|
|
228
228
|
placeholder: t('video_url'),
|
|
229
|
-
value: background
|
|
229
|
+
value: background?.video || '',
|
|
230
230
|
onChange: e => handleBackgroundChange('video', e.target.value),
|
|
231
231
|
className: "w-full p-1 text-sm border border-gray-300 rounded"
|
|
232
232
|
}), jsx("div", {
|
|
@@ -240,15 +240,15 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
240
240
|
}), jsx("input", {
|
|
241
241
|
type: "text",
|
|
242
242
|
placeholder: t('video_thumbnail'),
|
|
243
|
-
value: background
|
|
243
|
+
value: background?.videoThumbnail || '',
|
|
244
244
|
onChange: e => handleBackgroundChange('videoThumbnail', e.target.value),
|
|
245
245
|
className: "w-full p-1 text-sm border border-gray-300 rounded"
|
|
246
246
|
}), jsx("div", {
|
|
247
247
|
className: "flex flex-wrap gap-2 mt-3",
|
|
248
|
-
children: !background
|
|
248
|
+
children: !background?.video && background?.videoThumbnail && jsx("div", {
|
|
249
249
|
className: "mt-2 p-1 border border-gray-300 rounded w-full",
|
|
250
250
|
children: jsx("img", {
|
|
251
|
-
src: background
|
|
251
|
+
src: background?.videoThumbnail,
|
|
252
252
|
alt: "Video thumbnail preview",
|
|
253
253
|
className: "w-full h-24 object-cover",
|
|
254
254
|
onError: e => {
|
|
@@ -289,7 +289,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
289
289
|
}), jsx("div", {
|
|
290
290
|
className: "flex-grow"
|
|
291
291
|
}), jsx(Switch, {
|
|
292
|
-
value: header
|
|
292
|
+
value: header?.fixedHeader,
|
|
293
293
|
onChange: checked => handleHeaderChange('fixedHeader', checked)
|
|
294
294
|
})]
|
|
295
295
|
}), jsxs("div", {
|
|
@@ -302,7 +302,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
302
302
|
}), jsx("div", {
|
|
303
303
|
className: "flex-grow"
|
|
304
304
|
}), jsx(Switch, {
|
|
305
|
-
value: header
|
|
305
|
+
value: header?.showLogo,
|
|
306
306
|
onChange: checked => handleHeaderChange('showLogo', checked)
|
|
307
307
|
})]
|
|
308
308
|
}), jsxs("div", {
|
|
@@ -315,7 +315,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
315
315
|
}), jsx("div", {
|
|
316
316
|
className: "flex-grow"
|
|
317
317
|
}), jsx(Switch, {
|
|
318
|
-
value: header
|
|
318
|
+
value: header?.showSearchSlot,
|
|
319
319
|
onChange: checked => handleHeaderChange('showSearchSlot', checked)
|
|
320
320
|
})]
|
|
321
321
|
}), jsxs("div", {
|
|
@@ -328,7 +328,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
328
328
|
}), jsx("div", {
|
|
329
329
|
className: "flex-grow"
|
|
330
330
|
}), jsx(Switch, {
|
|
331
|
-
value: header
|
|
331
|
+
value: header?.showRightContent,
|
|
332
332
|
onChange: checked => handleHeaderChange('showRightContent', checked)
|
|
333
333
|
})]
|
|
334
334
|
}), jsxs("div", {
|
|
@@ -341,7 +341,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
341
341
|
}), jsx("div", {
|
|
342
342
|
className: "flex-grow"
|
|
343
343
|
}), jsx(Switch, {
|
|
344
|
-
value: header
|
|
344
|
+
value: header?.showMenuToggle,
|
|
345
345
|
onChange: checked => handleHeaderChange('showMenuToggle', checked)
|
|
346
346
|
})]
|
|
347
347
|
}), jsxs("div", {
|
|
@@ -354,7 +354,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
354
354
|
}), jsx("div", {
|
|
355
355
|
className: "flex-grow"
|
|
356
356
|
}), jsx(Switch, {
|
|
357
|
-
value: header
|
|
357
|
+
value: header?.showBackButton,
|
|
358
358
|
onChange: checked => handleHeaderChange('showBackButton', checked)
|
|
359
359
|
})]
|
|
360
360
|
}), jsxs("div", {
|
|
@@ -367,7 +367,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
367
367
|
}), jsx("div", {
|
|
368
368
|
className: "flex-grow"
|
|
369
369
|
}), jsx(Switch, {
|
|
370
|
-
value: header
|
|
370
|
+
value: header?.showPageTitle,
|
|
371
371
|
onChange: checked => handleHeaderChange('showPageTitle', checked)
|
|
372
372
|
})]
|
|
373
373
|
}), jsxs("div", {
|
|
@@ -380,7 +380,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
380
380
|
}), jsx("div", {
|
|
381
381
|
className: "flex-grow"
|
|
382
382
|
}), jsx(Switch, {
|
|
383
|
-
value: header
|
|
383
|
+
value: header?.showActionButtons,
|
|
384
384
|
onChange: checked => handleHeaderChange('showActionButtons', checked)
|
|
385
385
|
})]
|
|
386
386
|
})]
|
|
@@ -400,7 +400,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
400
400
|
}), jsx("div", {
|
|
401
401
|
className: "flex-grow"
|
|
402
402
|
}), jsx(Switch, {
|
|
403
|
-
value: header
|
|
403
|
+
value: header?.searchBarRender,
|
|
404
404
|
onChange: checked => handleHeaderChange('searchBarRender', checked)
|
|
405
405
|
})]
|
|
406
406
|
}), jsxs("div", {
|
|
@@ -413,7 +413,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
413
413
|
}), jsx("div", {
|
|
414
414
|
className: "flex-grow"
|
|
415
415
|
}), jsx(Switch, {
|
|
416
|
-
value: header
|
|
416
|
+
value: header?.searchBarBehavior === SearchBarBehavior.ON_SCROLL,
|
|
417
417
|
onChange: checked => handleHeaderChange('searchBarBehavior', checked ? SearchBarBehavior.ON_SCROLL : SearchBarBehavior.PERMANENT)
|
|
418
418
|
})]
|
|
419
419
|
}), jsxs("div", {
|
|
@@ -426,7 +426,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
426
426
|
}), jsx("div", {
|
|
427
427
|
className: "flex-grow"
|
|
428
428
|
}), jsx(Switch, {
|
|
429
|
-
value: header
|
|
429
|
+
value: header?.searchBarOverlay,
|
|
430
430
|
onChange: checked => handleHeaderChange('searchBarOverlay', checked)
|
|
431
431
|
})]
|
|
432
432
|
}), jsxs("div", {
|
|
@@ -443,7 +443,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
443
443
|
style: {
|
|
444
444
|
color: navTheme === 'dark' ? '#ffff' : 'black'
|
|
445
445
|
},
|
|
446
|
-
children: [header
|
|
446
|
+
children: [header?.scrollThreshold || scrollThresholdConfig.DEFAULT, "px"]
|
|
447
447
|
})]
|
|
448
448
|
}), jsxs("div", {
|
|
449
449
|
className: "relative",
|
|
@@ -452,7 +452,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
452
452
|
min: scrollThresholdConfig.MIN,
|
|
453
453
|
max: scrollThresholdConfig.MAX,
|
|
454
454
|
step: scrollThresholdConfig.STEP,
|
|
455
|
-
value: header
|
|
455
|
+
value: header?.scrollThreshold || scrollThresholdConfig.DEFAULT,
|
|
456
456
|
onChange: e => handleHeaderChange('scrollThreshold', parseInt(e.target.value)),
|
|
457
457
|
className: "w-full h-2 bg-gray-200 rounded-lg appearance-none cursor-pointer"
|
|
458
458
|
}), jsxs("div", {
|
|
@@ -706,7 +706,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
706
706
|
}), jsx("div", {
|
|
707
707
|
className: "flex-grow"
|
|
708
708
|
}), jsx(Switch, {
|
|
709
|
-
value: regions[deviceType]
|
|
709
|
+
value: regions[deviceType]?.footer?.showFooter,
|
|
710
710
|
onChange: checked => handleRegionFooterChange('showFooter', checked)
|
|
711
711
|
})]
|
|
712
712
|
}), jsxs("div", {
|
|
@@ -719,7 +719,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
719
719
|
}), jsx("div", {
|
|
720
720
|
className: "flex-grow"
|
|
721
721
|
}), jsx(Switch, {
|
|
722
|
-
value: regions[deviceType]
|
|
722
|
+
value: regions[deviceType]?.header?.showMenu,
|
|
723
723
|
onChange: checked => handleRegionChange('showMenu', checked)
|
|
724
724
|
})]
|
|
725
725
|
}), jsxs("div", {
|
|
@@ -732,7 +732,7 @@ import {jsxs,jsx,Fragment}from'react/jsx-runtime';import*as React from'react';im
|
|
|
732
732
|
}), jsx("div", {
|
|
733
733
|
className: "flex-grow"
|
|
734
734
|
}), jsx(Switch, {
|
|
735
|
-
value: regions[deviceType]
|
|
735
|
+
value: regions[deviceType]?.header?.menuHeaderRender,
|
|
736
736
|
onChange: checked => handleRegionChange('menuHeaderRender', checked)
|
|
737
737
|
})]
|
|
738
738
|
})]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RegionalSettings.js","sources":["../../../src/components/SettingDrawer/RegionalSettings.tsx"],"sourcesContent":[null],"names":["_jsxs","_Fragment","_jsx"],"mappings":"wcAQwB,SAAA,gBAAgB,CAAC,KAA6B,EAAA;QAC5D;IACN;AACA,GAAA,GAAA,cAAgB,CAAA,UAAa,CAAA;AAC7B,EAAA,MAAA;AACA,IAAA,QAAQ;AACR,IAAA,aAAO;AACP,IAAA;AACA,GAAA,GAAA,KAAO;AACP,EAAA,MAAA;AACA,IAAA;MACM,QAAA,IAAA,EAAA;QACA,YAAU,GAAG,QAAQ,EAAE,QAAC,IAAW,GAAA;AAEzC,EAAA,MAAA;AACI,IAAA,OAAA,GAAkB;cAAS,EAAA,aAAA,GAAA,YAAA,CAAA,IAAA,EAAA;AAE3B,EAAA,MAAA,CAAA,gBAA+B,EAAA,mBAAA,CAAA,GAAA,KAAwB,CAAA,QAAA,CAAA,KAAA,CAAA;AACnD,EAAA,MAAA,CAAA,oBAAqB,EAAA,
|
|
1
|
+
{"version":3,"file":"RegionalSettings.js","sources":["../../../src/components/SettingDrawer/RegionalSettings.tsx"],"sourcesContent":[null],"names":["_jsxs","_Fragment","_jsx"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@admin-layout/tailwind-design-pro",
|
|
3
|
-
"version": "10.0.9-alpha.
|
|
3
|
+
"version": "10.0.9-alpha.69",
|
|
4
4
|
"description": "Sample core for higher packages to depend on",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": "CDMBase LLC",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "776dd1cca085f9080682c99c3b3f60662680f6a0",
|
|
62
62
|
"typescript": {
|
|
63
63
|
"definition": "lib/index.d.ts"
|
|
64
64
|
}
|