@vixoniccom/aniversarios 1.4.6 → 1.4.7-dev.0
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/CHANGELOG.md +2 -0
- package/build/main.js +1 -1
- package/build.zip +0 -0
- package/configuration/appearanceGroup/AppearanceInputs.ts +33 -9
- package/configuration/standardGroup/StandardInputs.ts +45 -28
- package/configuration/utils.ts +2 -0
- package/configuration.json +121 -29
- package/package.json +1 -1
- package/src/components/Render/index.tsx +32 -3
- package/src/parameters.d.ts +3 -82
- package/src/presets/preset1.json +33 -0
- package/src/presets/preset2.json +35 -0
- package/src/presets/preset3.json +29 -0
- package/tsconfig.json +1 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"orientation": "h",
|
|
3
|
+
"animationMode": "fade",
|
|
4
|
+
"animationSpeed": 1.5,
|
|
5
|
+
"animationOrder": false,
|
|
6
|
+
"animationTime": "15",
|
|
7
|
+
"containerColumns": "1",
|
|
8
|
+
"containerColumnsGap": "4",
|
|
9
|
+
"containerRows": "5",
|
|
10
|
+
"containerRowsGap": "1",
|
|
11
|
+
"padding": "110px 30px 30px 30px",
|
|
12
|
+
"textPosition": 2,
|
|
13
|
+
"textAlignment": "center",
|
|
14
|
+
"nameFormat": { "fontSize": 3.4, "fontColor": "#054e5a", "alignment": { "horizontal": "left" } },
|
|
15
|
+
"textMargin": "1",
|
|
16
|
+
"descriptionEnabled": true,
|
|
17
|
+
"descriptionFormat": { "fontSize": 3, "fontColor": "#054e5a", "alignment": { "horizontal": "left" } },
|
|
18
|
+
"optionalEnabled": false,
|
|
19
|
+
"imageEnabled": false,
|
|
20
|
+
"imagePosition": 1,
|
|
21
|
+
"imageAlignment": "center",
|
|
22
|
+
"imageStyle": "normal",
|
|
23
|
+
"dateEnabled": true,
|
|
24
|
+
"datePosition": 1,
|
|
25
|
+
"dateAlignment": "center",
|
|
26
|
+
"dateStyle": "circle",
|
|
27
|
+
"dateDayFormat": { "fontSize": 38, "fontColor": "#eeb500", "alignment": { "horizontal": "left" } },
|
|
28
|
+
"dateMonthFormat": { "fontSize": 20, "fontColor": "#eeb500", "alignment": { "horizontal": "left" } },
|
|
29
|
+
"abbreviatedMonths": true,
|
|
30
|
+
"dateMargin": "2",
|
|
31
|
+
"separator": false,
|
|
32
|
+
"separatorWidth": "6",
|
|
33
|
+
"separatorColor": "#000000",
|
|
34
|
+
"itemMargins": "10px"
|
|
35
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"orientation": "v",
|
|
3
|
+
"animationMode": "fade",
|
|
4
|
+
"animationSpeed": 1.5,
|
|
5
|
+
"animationOrder": true,
|
|
6
|
+
"animationTime": "15",
|
|
7
|
+
"containerColumns": "1",
|
|
8
|
+
"containerRows": "1",
|
|
9
|
+
"padding": "190px 30px 70px 30px",
|
|
10
|
+
"textPosition": 2,
|
|
11
|
+
"textAlignment": "center",
|
|
12
|
+
"nameFormat": { "fontSize": 4.2, "fontColor": "#ffffff", "alignment": { "horizontal": "center" } },
|
|
13
|
+
"textMargin": "20",
|
|
14
|
+
"descriptionEnabled": true,
|
|
15
|
+
"descriptionFormat": { "fontSize": 3.5, "fontColor": "#ffffff", "alignment": { "horizontal": "center" } },
|
|
16
|
+
"optionalEnabled": false,
|
|
17
|
+
"imageEnabled": true,
|
|
18
|
+
"imagePosition": 1,
|
|
19
|
+
"imageAlignment": "center",
|
|
20
|
+
"imageStyle": "circle",
|
|
21
|
+
"imageMargin": "15",
|
|
22
|
+
"imageSize": "75",
|
|
23
|
+
"dateEnabled": false,
|
|
24
|
+
"datePosition": 3,
|
|
25
|
+
"dateAlignment": "center",
|
|
26
|
+
"dateStyle": "calendarFlat",
|
|
27
|
+
"abbreviatedMonths": false,
|
|
28
|
+
"separator": false
|
|
29
|
+
}
|