@revenuecat/purchases-ui-js 2.0.2 → 2.0.4
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/components/button/ButtonNode.stories.svelte +66 -102
- package/dist/components/button/ButtonNode.svelte +18 -26
- package/dist/components/carousel/Carousel.stories.svelte +1039 -0
- package/dist/components/carousel/Carousel.stories.svelte.d.ts +19 -0
- package/dist/components/carousel/Carousel.svelte +298 -0
- package/dist/components/carousel/Carousel.svelte.d.ts +4 -0
- package/dist/components/carousel/CarouselPage.svelte +39 -0
- package/dist/components/carousel/CarouselPage.svelte.d.ts +11 -0
- package/dist/components/carousel/PageControl.svelte +93 -0
- package/dist/components/carousel/PageControl.svelte.d.ts +4 -0
- package/dist/components/carousel/carousel-utils.d.ts +4 -0
- package/dist/components/carousel/carousel-utils.js +21 -0
- package/dist/components/footer/Footer.stories.svelte +112 -102
- package/dist/components/footer/Footer.svelte +8 -4
- package/dist/components/icon/Icon.stories.svelte +100 -0
- package/dist/components/icon/Icon.stories.svelte.d.ts +19 -0
- package/dist/components/icon/Icon.svelte +73 -0
- package/dist/components/icon/Icon.svelte.d.ts +4 -0
- package/dist/components/image/ClipPath.svelte +49 -0
- package/dist/components/image/ClipPath.svelte.d.ts +9 -0
- package/dist/components/image/Image.stories.svelte +83 -188
- package/dist/components/image/Image.svelte +152 -136
- package/dist/components/image/Image.svelte.d.ts +1 -1
- package/dist/components/image/Overlay.svelte +36 -0
- package/dist/components/image/Overlay.svelte.d.ts +8 -0
- package/dist/components/package/Package.stories.svelte +10 -21
- package/dist/components/package/Package.svelte +8 -35
- package/dist/components/paywall/Node.svelte +25 -32
- package/dist/components/paywall/Node.svelte.d.ts +4 -6
- package/dist/components/paywall/Paywall.stories.svelte +36 -140
- package/dist/components/paywall/Paywall.svelte +23 -7
- package/dist/components/paywall/Paywall.svelte.d.ts +4 -2
- package/dist/components/paywall/fixtures/override-paywall.d.ts +2 -0
- package/dist/components/paywall/fixtures/override-paywall.js +1310 -0
- package/dist/components/paywall/fixtures/stack-paywall.d.ts +2 -0
- package/dist/components/paywall/fixtures/stack-paywall.js +5223 -0
- package/dist/components/paywall/fixtures/variables.d.ts +261 -0
- package/dist/components/paywall/fixtures/variables.js +262 -0
- package/dist/components/paywall/paywall-utils.d.ts +1 -1
- package/dist/components/purchase-button/PurchaseButton.stories.svelte +10 -21
- package/dist/components/purchase-button/PurchaseButton.svelte +2 -27
- package/dist/components/stack/Stack.stories.svelte +2354 -978
- package/dist/components/stack/Stack.svelte +116 -134
- package/dist/components/stack/Stack.svelte.d.ts +8 -2
- package/dist/components/stack/stack-utils.d.ts +10 -30
- package/dist/components/stack/stack-utils.js +77 -255
- package/dist/components/text/Text.svelte +3 -37
- package/dist/components/text/Text.svelte.d.ts +1 -2
- package/dist/components/text/TextNode.stories.svelte +10 -36
- package/dist/components/text/TextNode.svelte +25 -28
- package/dist/components/text/TextNode.svelte.d.ts +1 -1
- package/dist/components/text/text-utils.d.ts +4 -9
- package/dist/components/text/text-utils.js +32 -117
- package/dist/components/timeline/Timeline.stories.svelte +640 -251
- package/dist/components/timeline/Timeline.svelte +42 -28
- package/dist/components/timeline/Timeline.svelte.d.ts +1 -1
- package/dist/components/timeline/TimelineItem.svelte +80 -112
- package/dist/components/timeline/TimelineItem.svelte.d.ts +6 -2
- package/dist/components/timeline/timeline-utils.d.ts +24 -6
- package/dist/components/timeline/timeline-utils.js +21 -113
- package/dist/index.d.ts +3 -2
- package/dist/index.js +3 -2
- package/dist/stores/color-mode.d.ts +1 -1
- package/dist/stores/paywall.d.ts +5 -2
- package/dist/stores/selected.d.ts +5 -0
- package/dist/stores/selected.js +12 -0
- package/dist/stores/variables.d.ts +1 -1
- package/dist/stores/variables.js +0 -1
- package/dist/stories/component-decorator.d.ts +2 -0
- package/dist/stories/component-decorator.js +12 -0
- package/dist/stories/fixtures.d.ts +6 -3
- package/dist/stories/fixtures.js +5214 -4422
- package/dist/stories/paywall-decorator.js +6 -0
- package/dist/stories/variables-decorator.d.ts +1 -1
- package/dist/stories/viewport-decorator.d.ts +2 -0
- package/dist/stories/viewport-decorator.js +8 -0
- package/dist/stories/viewport-wrapper.svelte +55 -0
- package/dist/stories/viewport-wrapper.svelte.d.ts +10 -0
- package/dist/stories/with-layout.d.ts +2 -10
- package/dist/stories/with-layout.js +3 -5
- package/dist/types/alignment.d.ts +5 -3
- package/dist/types/background.d.ts +6 -5
- package/dist/types/base.d.ts +7 -0
- package/dist/types/colors.d.ts +4 -4
- package/dist/types/component.d.ts +7 -2
- package/dist/types/components/button.d.ts +6 -1
- package/dist/types/components/carousel.d.ts +51 -0
- package/dist/types/components/carousel.js +1 -0
- package/dist/types/components/footer.d.ts +2 -1
- package/dist/types/components/icon.d.ts +28 -0
- package/dist/types/components/icon.js +1 -0
- package/dist/types/components/image.d.ts +20 -0
- package/dist/types/components/image.js +1 -0
- package/dist/types/components/package.d.ts +2 -1
- package/dist/types/components/purchase-button.d.ts +2 -1
- package/dist/types/components/stack.d.ts +32 -0
- package/dist/types/components/stack.js +1 -0
- package/dist/types/components/text.d.ts +20 -0
- package/dist/types/components/text.js +1 -0
- package/dist/types/components/timeline.d.ts +35 -0
- package/dist/types/components/timeline.js +1 -0
- package/dist/types/localization.d.ts +2 -1
- package/dist/types/media.d.ts +4 -3
- package/dist/types/overrides.d.ts +48 -0
- package/dist/types/overrides.js +1 -0
- package/dist/types/paywall.d.ts +27 -0
- package/dist/types/paywall.js +1 -0
- package/dist/types/ui-config.d.ts +20 -0
- package/dist/types/ui-config.js +1 -0
- package/dist/types/variables.d.ts +13 -0
- package/dist/types/variables.js +10 -0
- package/dist/types.d.ts +17 -9
- package/dist/ui/atoms/typography.stories.svelte +1 -27
- package/dist/ui/molecules/button.stories.svelte +3 -8
- package/dist/ui/theme/colors.d.ts +0 -6
- package/dist/ui/theme/colors.js +1 -1
- package/dist/ui/theme/text.d.ts +3 -4
- package/dist/ui/theme/utils.d.ts +0 -10
- package/dist/ui/theme/utils.js +5 -5
- package/dist/utils/background-utils.d.ts +4 -0
- package/dist/utils/background-utils.js +39 -0
- package/dist/utils/base-utils.d.ts +18 -0
- package/dist/utils/base-utils.js +124 -0
- package/dist/utils/constants.d.ts +2 -2
- package/dist/utils/constants.js +6 -1
- package/dist/utils/font-utils.d.ts +4 -0
- package/dist/utils/font-utils.js +47 -0
- package/dist/utils/style-utils.d.ts +7 -120
- package/dist/utils/style-utils.js +29 -304
- package/dist/utils/variable-utils.d.ts +1 -22
- package/dist/utils/variable-utils.js +28 -24
- package/dist/web-components/index.css +1 -1
- package/dist/web-components/index.js +1435 -980
- package/package.json +36 -26
- package/dist/components/button/button-utils.d.ts +0 -2
- package/dist/components/button/button-utils.js +0 -19
- package/dist/components/image/image-utils.d.ts +0 -19
- package/dist/components/image/image-utils.js +0 -33
- package/dist/components/purchase-button/purchase-button-utils.d.ts +0 -2
- package/dist/components/purchase-button/purchase-button-utils.js +0 -20
- package/dist/data/entities.d.ts +0 -162
- package/dist/stories/meta-templates.d.ts +0 -12
- package/dist/stories/meta-templates.js +0 -155
- /package/dist/{data/entities.js → types/base.js} +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script module lang="ts">
|
|
2
|
-
import { Timeline } from "../..";
|
|
2
|
+
import { FontWeights, Timeline } from "../..";
|
|
3
3
|
import { defaultColor } from "../text/text-utils";
|
|
4
4
|
import { localizationDecorator } from "../../stories/localization-decorator";
|
|
5
5
|
import { defineMeta } from "@storybook/addon-svelte-csf";
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
const { Story } = defineMeta({
|
|
10
10
|
title: "Components/Timeline",
|
|
11
11
|
component: Timeline,
|
|
12
|
-
tags: ["autodocs"],
|
|
13
12
|
decorators: [
|
|
14
13
|
localizationDecorator({
|
|
15
14
|
defaultLocale,
|
|
@@ -39,17 +38,16 @@
|
|
|
39
38
|
},
|
|
40
39
|
}),
|
|
41
40
|
],
|
|
42
|
-
argTypes: {},
|
|
43
41
|
});
|
|
44
42
|
</script>
|
|
45
43
|
|
|
46
|
-
<!-- Timeline -->
|
|
47
44
|
<Story
|
|
48
45
|
name="Round icon"
|
|
49
46
|
args={{
|
|
50
47
|
type: "timeline",
|
|
51
|
-
item_spacing:
|
|
52
|
-
text_spacing:
|
|
48
|
+
item_spacing: 16,
|
|
49
|
+
text_spacing: 4,
|
|
50
|
+
column_gutter: 16,
|
|
53
51
|
size: { width: { type: "fill" }, height: { type: "fit" } },
|
|
54
52
|
margin: { top: 8, trailing: 8, bottom: 8, leading: 8 },
|
|
55
53
|
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
@@ -57,15 +55,36 @@
|
|
|
57
55
|
name: "default timeline",
|
|
58
56
|
items: [
|
|
59
57
|
{
|
|
58
|
+
id: "item-1",
|
|
59
|
+
name: "item-1",
|
|
60
|
+
type: "timeline_item",
|
|
60
61
|
title: {
|
|
61
62
|
text_lid: "asd123",
|
|
62
63
|
color: defaultColor,
|
|
63
64
|
horizontal_alignment: "center",
|
|
65
|
+
font_size: 18,
|
|
66
|
+
font_weight: "bold",
|
|
67
|
+
font_weight_int: 700,
|
|
68
|
+
type: "text",
|
|
69
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
70
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
71
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
72
|
+
id: "title-1",
|
|
73
|
+
name: "title-1",
|
|
64
74
|
},
|
|
65
75
|
description: {
|
|
66
76
|
text_lid: "asd123d",
|
|
67
77
|
color: defaultColor,
|
|
68
78
|
horizontal_alignment: "center",
|
|
79
|
+
font_size: 18,
|
|
80
|
+
font_weight: "regular",
|
|
81
|
+
font_weight_int: 400,
|
|
82
|
+
type: "text",
|
|
83
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
84
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
85
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
86
|
+
id: "description-1",
|
|
87
|
+
name: "description-1",
|
|
69
88
|
},
|
|
70
89
|
icon: {
|
|
71
90
|
name: "check",
|
|
@@ -75,29 +94,64 @@
|
|
|
75
94
|
value: "#FAFAFA",
|
|
76
95
|
},
|
|
77
96
|
},
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
97
|
+
size: {
|
|
98
|
+
width: { type: "fixed", value: 32 },
|
|
99
|
+
height: { type: "fixed", value: 32 },
|
|
100
|
+
},
|
|
101
|
+
type: "icon",
|
|
102
|
+
padding: { top: 4, trailing: 4, bottom: 4, leading: 4 },
|
|
103
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
104
|
+
id: "icon-1",
|
|
105
|
+
icon_name: "check",
|
|
106
|
+
base_url: "https://icons.pawwalls.com/icons",
|
|
107
|
+
formats: {
|
|
108
|
+
heic: "check.heic",
|
|
109
|
+
png: "check.png",
|
|
110
|
+
svg: "check.svg",
|
|
111
|
+
webp: "check.webp",
|
|
112
|
+
},
|
|
113
|
+
icon_background: {
|
|
114
|
+
shape: { type: "circle" },
|
|
115
|
+
color: {
|
|
116
|
+
light: {
|
|
117
|
+
type: "hex",
|
|
118
|
+
value: "#3f3f3f",
|
|
119
|
+
},
|
|
87
120
|
},
|
|
88
121
|
},
|
|
89
122
|
},
|
|
90
123
|
},
|
|
91
124
|
{
|
|
125
|
+
id: "item-2",
|
|
126
|
+
name: "item-2",
|
|
127
|
+
type: "timeline_item",
|
|
92
128
|
title: {
|
|
93
129
|
text_lid: "qwe123",
|
|
94
130
|
color: defaultColor,
|
|
95
131
|
horizontal_alignment: "center",
|
|
132
|
+
font_size: 18,
|
|
133
|
+
font_weight: "bold",
|
|
134
|
+
font_weight_int: 700,
|
|
135
|
+
type: "text",
|
|
136
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
137
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
138
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
139
|
+
id: "title-2",
|
|
140
|
+
name: "title-2",
|
|
96
141
|
},
|
|
97
142
|
description: {
|
|
98
143
|
text_lid: "qwe123d",
|
|
99
144
|
color: defaultColor,
|
|
100
145
|
horizontal_alignment: "center",
|
|
146
|
+
font_size: 18,
|
|
147
|
+
font_weight: "regular",
|
|
148
|
+
font_weight_int: 400,
|
|
149
|
+
type: "text",
|
|
150
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
151
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
152
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
153
|
+
id: "description-2",
|
|
154
|
+
name: "description-2",
|
|
101
155
|
},
|
|
102
156
|
icon: {
|
|
103
157
|
name: "check",
|
|
@@ -107,29 +161,64 @@
|
|
|
107
161
|
value: "#FAFAFA",
|
|
108
162
|
},
|
|
109
163
|
},
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
164
|
+
size: {
|
|
165
|
+
width: { type: "fixed", value: 32 },
|
|
166
|
+
height: { type: "fixed", value: 32 },
|
|
167
|
+
},
|
|
168
|
+
type: "icon",
|
|
169
|
+
padding: { top: 4, trailing: 4, bottom: 4, leading: 4 },
|
|
170
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
171
|
+
id: "icon-2",
|
|
172
|
+
icon_name: "check",
|
|
173
|
+
base_url: "https://icons.pawwalls.com/icons",
|
|
174
|
+
formats: {
|
|
175
|
+
heic: "check.heic",
|
|
176
|
+
png: "check.png",
|
|
177
|
+
svg: "check.svg",
|
|
178
|
+
webp: "check.webp",
|
|
179
|
+
},
|
|
180
|
+
icon_background: {
|
|
181
|
+
shape: { type: "circle" },
|
|
182
|
+
color: {
|
|
183
|
+
light: {
|
|
184
|
+
type: "hex",
|
|
185
|
+
value: "#3f3f3f",
|
|
186
|
+
},
|
|
119
187
|
},
|
|
120
188
|
},
|
|
121
189
|
},
|
|
122
190
|
},
|
|
123
191
|
{
|
|
192
|
+
id: "item-3",
|
|
193
|
+
name: "item-3",
|
|
194
|
+
type: "timeline_item",
|
|
124
195
|
title: {
|
|
125
196
|
text_lid: "zxc123",
|
|
126
197
|
color: defaultColor,
|
|
127
198
|
horizontal_alignment: "center",
|
|
199
|
+
font_size: 18,
|
|
200
|
+
font_weight: "bold",
|
|
201
|
+
font_weight_int: 700,
|
|
202
|
+
type: "text",
|
|
203
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
204
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
205
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
206
|
+
id: "title-3",
|
|
207
|
+
name: "title-3",
|
|
128
208
|
},
|
|
129
209
|
description: {
|
|
130
210
|
text_lid: "zxc123d",
|
|
131
211
|
color: defaultColor,
|
|
132
212
|
horizontal_alignment: "center",
|
|
213
|
+
font_size: 18,
|
|
214
|
+
font_weight: "regular",
|
|
215
|
+
font_weight_int: 400,
|
|
216
|
+
type: "text",
|
|
217
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
218
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
219
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
220
|
+
id: "description-3",
|
|
221
|
+
name: "description-3",
|
|
133
222
|
},
|
|
134
223
|
icon: {
|
|
135
224
|
name: "check",
|
|
@@ -139,15 +228,29 @@
|
|
|
139
228
|
value: "#FAFAFA",
|
|
140
229
|
},
|
|
141
230
|
},
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
231
|
+
size: {
|
|
232
|
+
width: { type: "fixed", value: 32 },
|
|
233
|
+
height: { type: "fixed", value: 32 },
|
|
234
|
+
},
|
|
235
|
+
type: "icon",
|
|
236
|
+
padding: { top: 4, trailing: 4, bottom: 4, leading: 4 },
|
|
237
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
238
|
+
id: "icon-3",
|
|
239
|
+
icon_name: "check",
|
|
240
|
+
base_url: "https://icons.pawwalls.com/icons",
|
|
241
|
+
formats: {
|
|
242
|
+
heic: "check.heic",
|
|
243
|
+
png: "check.png",
|
|
244
|
+
svg: "check.svg",
|
|
245
|
+
webp: "check.webp",
|
|
246
|
+
},
|
|
247
|
+
icon_background: {
|
|
248
|
+
shape: { type: "circle" },
|
|
249
|
+
color: {
|
|
250
|
+
light: {
|
|
251
|
+
type: "hex",
|
|
252
|
+
value: "#3f3f3f",
|
|
253
|
+
},
|
|
151
254
|
},
|
|
152
255
|
},
|
|
153
256
|
},
|
|
@@ -160,8 +263,9 @@
|
|
|
160
263
|
name="Square icon"
|
|
161
264
|
args={{
|
|
162
265
|
type: "timeline",
|
|
163
|
-
item_spacing:
|
|
164
|
-
text_spacing:
|
|
266
|
+
item_spacing: 16,
|
|
267
|
+
text_spacing: 4,
|
|
268
|
+
column_gutter: 16,
|
|
165
269
|
size: { width: { type: "fill" }, height: { type: "fit" } },
|
|
166
270
|
margin: { top: 8, trailing: 8, bottom: 8, leading: 8 },
|
|
167
271
|
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
@@ -169,15 +273,36 @@
|
|
|
169
273
|
name: "default timeline",
|
|
170
274
|
items: [
|
|
171
275
|
{
|
|
276
|
+
id: "item-1",
|
|
277
|
+
name: "item-1",
|
|
278
|
+
type: "timeline_item",
|
|
172
279
|
title: {
|
|
173
280
|
text_lid: "asd123",
|
|
174
281
|
color: defaultColor,
|
|
175
282
|
horizontal_alignment: "center",
|
|
283
|
+
font_size: 18,
|
|
284
|
+
font_weight: "bold",
|
|
285
|
+
font_weight_int: 700,
|
|
286
|
+
type: "text",
|
|
287
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
288
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
289
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
290
|
+
id: "title-1",
|
|
291
|
+
name: "title-1",
|
|
176
292
|
},
|
|
177
293
|
description: {
|
|
178
294
|
text_lid: "asd123d",
|
|
179
295
|
color: defaultColor,
|
|
180
296
|
horizontal_alignment: "center",
|
|
297
|
+
font_size: 18,
|
|
298
|
+
font_weight: "regular",
|
|
299
|
+
font_weight_int: 400,
|
|
300
|
+
type: "text",
|
|
301
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
302
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
303
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
304
|
+
id: "description-1",
|
|
305
|
+
name: "description-1",
|
|
181
306
|
},
|
|
182
307
|
icon: {
|
|
183
308
|
name: "check",
|
|
@@ -187,37 +312,72 @@
|
|
|
187
312
|
value: "#FAFAFA",
|
|
188
313
|
},
|
|
189
314
|
},
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
315
|
+
size: {
|
|
316
|
+
width: { type: "fixed", value: 32 },
|
|
317
|
+
height: { type: "fixed", value: 32 },
|
|
318
|
+
},
|
|
319
|
+
type: "icon",
|
|
320
|
+
padding: { top: 4, trailing: 4, bottom: 4, leading: 4 },
|
|
321
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
322
|
+
id: "icon-1",
|
|
323
|
+
icon_name: "check",
|
|
324
|
+
base_url: "https://icons.pawwalls.com/icons",
|
|
325
|
+
formats: {
|
|
326
|
+
heic: "check.heic",
|
|
327
|
+
png: "check.png",
|
|
328
|
+
svg: "check.svg",
|
|
329
|
+
webp: "check.webp",
|
|
330
|
+
},
|
|
331
|
+
icon_background: {
|
|
332
|
+
shape: {
|
|
333
|
+
type: "rectangle",
|
|
334
|
+
corners: {
|
|
335
|
+
top_leading: 0,
|
|
336
|
+
top_trailing: 0,
|
|
337
|
+
bottom_leading: 0,
|
|
338
|
+
bottom_trailing: 0,
|
|
339
|
+
},
|
|
340
|
+
},
|
|
341
|
+
color: {
|
|
342
|
+
light: {
|
|
343
|
+
type: "hex",
|
|
344
|
+
value: "#3f3f3f",
|
|
345
|
+
},
|
|
207
346
|
},
|
|
208
347
|
},
|
|
209
348
|
},
|
|
210
349
|
},
|
|
211
350
|
{
|
|
351
|
+
id: "item-2",
|
|
352
|
+
name: "item-2",
|
|
353
|
+
type: "timeline_item",
|
|
212
354
|
title: {
|
|
213
355
|
text_lid: "qwe123",
|
|
214
356
|
color: defaultColor,
|
|
215
357
|
horizontal_alignment: "center",
|
|
358
|
+
font_size: 18,
|
|
359
|
+
font_weight: "bold",
|
|
360
|
+
font_weight_int: 700,
|
|
361
|
+
type: "text",
|
|
362
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
363
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
364
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
365
|
+
id: "title-2",
|
|
366
|
+
name: "title-2",
|
|
216
367
|
},
|
|
217
368
|
description: {
|
|
218
369
|
text_lid: "qwe123d",
|
|
219
370
|
color: defaultColor,
|
|
220
371
|
horizontal_alignment: "center",
|
|
372
|
+
font_size: 18,
|
|
373
|
+
font_weight: "regular",
|
|
374
|
+
font_weight_int: 400,
|
|
375
|
+
type: "text",
|
|
376
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
377
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
378
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
379
|
+
id: "description-2",
|
|
380
|
+
name: "description-2",
|
|
221
381
|
},
|
|
222
382
|
icon: {
|
|
223
383
|
name: "check",
|
|
@@ -227,37 +387,72 @@
|
|
|
227
387
|
value: "#FAFAFA",
|
|
228
388
|
},
|
|
229
389
|
},
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
390
|
+
size: {
|
|
391
|
+
width: { type: "fixed", value: 32 },
|
|
392
|
+
height: { type: "fixed", value: 32 },
|
|
393
|
+
},
|
|
394
|
+
type: "icon",
|
|
395
|
+
padding: { top: 4, trailing: 4, bottom: 4, leading: 4 },
|
|
396
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
397
|
+
id: "icon-2",
|
|
398
|
+
icon_name: "check",
|
|
399
|
+
base_url: "https://icons.pawwalls.com/icons",
|
|
400
|
+
formats: {
|
|
401
|
+
heic: "check.heic",
|
|
402
|
+
png: "check.png",
|
|
403
|
+
svg: "check.svg",
|
|
404
|
+
webp: "check.webp",
|
|
405
|
+
},
|
|
406
|
+
icon_background: {
|
|
407
|
+
shape: {
|
|
408
|
+
type: "rectangle",
|
|
409
|
+
corners: {
|
|
410
|
+
top_leading: 0,
|
|
411
|
+
top_trailing: 0,
|
|
412
|
+
bottom_leading: 0,
|
|
413
|
+
bottom_trailing: 0,
|
|
414
|
+
},
|
|
415
|
+
},
|
|
416
|
+
color: {
|
|
417
|
+
light: {
|
|
418
|
+
type: "hex",
|
|
419
|
+
value: "#3f3f3f",
|
|
420
|
+
},
|
|
247
421
|
},
|
|
248
422
|
},
|
|
249
423
|
},
|
|
250
424
|
},
|
|
251
425
|
{
|
|
426
|
+
id: "item-3",
|
|
427
|
+
name: "item-3",
|
|
428
|
+
type: "timeline_item",
|
|
252
429
|
title: {
|
|
253
430
|
text_lid: "zxc123",
|
|
254
431
|
color: defaultColor,
|
|
255
432
|
horizontal_alignment: "center",
|
|
433
|
+
font_size: 18,
|
|
434
|
+
font_weight: "bold",
|
|
435
|
+
font_weight_int: 700,
|
|
436
|
+
type: "text",
|
|
437
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
438
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
439
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
440
|
+
id: "title-3",
|
|
441
|
+
name: "title-3",
|
|
256
442
|
},
|
|
257
443
|
description: {
|
|
258
444
|
text_lid: "zxc123d",
|
|
259
445
|
color: defaultColor,
|
|
260
446
|
horizontal_alignment: "center",
|
|
447
|
+
font_size: 18,
|
|
448
|
+
font_weight: "regular",
|
|
449
|
+
font_weight_int: 400,
|
|
450
|
+
type: "text",
|
|
451
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
452
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
453
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
454
|
+
id: "description-3",
|
|
455
|
+
name: "description-3",
|
|
261
456
|
},
|
|
262
457
|
icon: {
|
|
263
458
|
name: "check",
|
|
@@ -267,23 +462,37 @@
|
|
|
267
462
|
value: "#FAFAFA",
|
|
268
463
|
},
|
|
269
464
|
},
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
465
|
+
size: {
|
|
466
|
+
width: { type: "fixed", value: 32 },
|
|
467
|
+
height: { type: "fixed", value: 32 },
|
|
468
|
+
},
|
|
469
|
+
type: "icon",
|
|
470
|
+
padding: { top: 4, trailing: 4, bottom: 4, leading: 4 },
|
|
471
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
472
|
+
id: "icon-3",
|
|
473
|
+
icon_name: "check",
|
|
474
|
+
base_url: "https://icons.pawwalls.com/icons",
|
|
475
|
+
formats: {
|
|
476
|
+
heic: "check.heic",
|
|
477
|
+
png: "check.png",
|
|
478
|
+
svg: "check.svg",
|
|
479
|
+
webp: "check.webp",
|
|
480
|
+
},
|
|
481
|
+
icon_background: {
|
|
482
|
+
shape: {
|
|
483
|
+
type: "rectangle",
|
|
484
|
+
corners: {
|
|
485
|
+
top_leading: 0,
|
|
486
|
+
top_trailing: 0,
|
|
487
|
+
bottom_leading: 0,
|
|
488
|
+
bottom_trailing: 0,
|
|
489
|
+
},
|
|
490
|
+
},
|
|
491
|
+
color: {
|
|
492
|
+
light: {
|
|
493
|
+
type: "hex",
|
|
494
|
+
value: "#3f3f3f",
|
|
495
|
+
},
|
|
287
496
|
},
|
|
288
497
|
},
|
|
289
498
|
},
|
|
@@ -291,12 +500,14 @@
|
|
|
291
500
|
],
|
|
292
501
|
}}
|
|
293
502
|
/>
|
|
503
|
+
|
|
294
504
|
<Story
|
|
295
|
-
name="
|
|
505
|
+
name="Square icon with rounded corners"
|
|
296
506
|
args={{
|
|
297
507
|
type: "timeline",
|
|
298
|
-
item_spacing:
|
|
299
|
-
text_spacing:
|
|
508
|
+
item_spacing: 16,
|
|
509
|
+
text_spacing: 4,
|
|
510
|
+
column_gutter: 16,
|
|
300
511
|
size: { width: { type: "fill" }, height: { type: "fit" } },
|
|
301
512
|
margin: { top: 8, trailing: 8, bottom: 8, leading: 8 },
|
|
302
513
|
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
@@ -304,15 +515,36 @@
|
|
|
304
515
|
name: "default timeline",
|
|
305
516
|
items: [
|
|
306
517
|
{
|
|
518
|
+
id: "item-1",
|
|
519
|
+
name: "item-1",
|
|
520
|
+
type: "timeline_item",
|
|
307
521
|
title: {
|
|
308
522
|
text_lid: "asd123",
|
|
309
523
|
color: defaultColor,
|
|
310
524
|
horizontal_alignment: "center",
|
|
525
|
+
font_size: 18,
|
|
526
|
+
font_weight: "bold",
|
|
527
|
+
font_weight_int: 700,
|
|
528
|
+
type: "text",
|
|
529
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
530
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
531
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
532
|
+
id: "title-1",
|
|
533
|
+
name: "title-1",
|
|
311
534
|
},
|
|
312
535
|
description: {
|
|
313
536
|
text_lid: "asd123d",
|
|
314
537
|
color: defaultColor,
|
|
315
538
|
horizontal_alignment: "center",
|
|
539
|
+
font_size: 18,
|
|
540
|
+
font_weight: "regular",
|
|
541
|
+
font_weight_int: 400,
|
|
542
|
+
type: "text",
|
|
543
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
544
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
545
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
546
|
+
id: "description-1",
|
|
547
|
+
name: "description-1",
|
|
316
548
|
},
|
|
317
549
|
icon: {
|
|
318
550
|
name: "check",
|
|
@@ -322,34 +554,72 @@
|
|
|
322
554
|
value: "#FAFAFA",
|
|
323
555
|
},
|
|
324
556
|
},
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
557
|
+
size: {
|
|
558
|
+
width: { type: "fixed", value: 32 },
|
|
559
|
+
height: { type: "fixed", value: 32 },
|
|
560
|
+
},
|
|
561
|
+
type: "icon",
|
|
562
|
+
padding: { top: 4, trailing: 4, bottom: 4, leading: 4 },
|
|
563
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
564
|
+
id: "icon-1",
|
|
565
|
+
icon_name: "check",
|
|
566
|
+
base_url: "https://icons.pawwalls.com/icons",
|
|
567
|
+
formats: {
|
|
568
|
+
heic: "check.heic",
|
|
569
|
+
png: "check.png",
|
|
570
|
+
svg: "check.svg",
|
|
571
|
+
webp: "check.webp",
|
|
572
|
+
},
|
|
573
|
+
icon_background: {
|
|
574
|
+
shape: {
|
|
575
|
+
type: "rectangle",
|
|
576
|
+
corners: {
|
|
577
|
+
top_leading: 8,
|
|
578
|
+
top_trailing: 8,
|
|
579
|
+
bottom_leading: 8,
|
|
580
|
+
bottom_trailing: 8,
|
|
581
|
+
},
|
|
582
|
+
},
|
|
583
|
+
color: {
|
|
584
|
+
light: {
|
|
585
|
+
type: "hex",
|
|
586
|
+
value: "#3f3f3f",
|
|
587
|
+
},
|
|
334
588
|
},
|
|
335
589
|
},
|
|
336
590
|
},
|
|
337
|
-
connector: {
|
|
338
|
-
width: 8,
|
|
339
|
-
margin: { top: 0, bottom: 0 },
|
|
340
|
-
color: { light: { type: "hex", value: "#d3d3d3" } },
|
|
341
|
-
},
|
|
342
591
|
},
|
|
343
592
|
{
|
|
593
|
+
id: "item-2",
|
|
594
|
+
name: "item-2",
|
|
595
|
+
type: "timeline_item",
|
|
344
596
|
title: {
|
|
345
597
|
text_lid: "qwe123",
|
|
346
598
|
color: defaultColor,
|
|
347
599
|
horizontal_alignment: "center",
|
|
600
|
+
font_size: 18,
|
|
601
|
+
font_weight: "bold",
|
|
602
|
+
font_weight_int: 700,
|
|
603
|
+
type: "text",
|
|
604
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
605
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
606
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
607
|
+
id: "title-2",
|
|
608
|
+
name: "title-2",
|
|
348
609
|
},
|
|
349
610
|
description: {
|
|
350
611
|
text_lid: "qwe123d",
|
|
351
612
|
color: defaultColor,
|
|
352
613
|
horizontal_alignment: "center",
|
|
614
|
+
font_size: 18,
|
|
615
|
+
font_weight: "regular",
|
|
616
|
+
font_weight_int: 400,
|
|
617
|
+
type: "text",
|
|
618
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
619
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
620
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
621
|
+
id: "description-2",
|
|
622
|
+
name: "description-2",
|
|
353
623
|
},
|
|
354
624
|
icon: {
|
|
355
625
|
name: "check",
|
|
@@ -359,34 +629,72 @@
|
|
|
359
629
|
value: "#FAFAFA",
|
|
360
630
|
},
|
|
361
631
|
},
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
632
|
+
size: {
|
|
633
|
+
width: { type: "fixed", value: 32 },
|
|
634
|
+
height: { type: "fixed", value: 32 },
|
|
635
|
+
},
|
|
636
|
+
type: "icon",
|
|
637
|
+
padding: { top: 4, trailing: 4, bottom: 4, leading: 4 },
|
|
638
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
639
|
+
id: "icon-2",
|
|
640
|
+
icon_name: "check",
|
|
641
|
+
base_url: "https://icons.pawwalls.com/icons",
|
|
642
|
+
formats: {
|
|
643
|
+
heic: "check.heic",
|
|
644
|
+
png: "check.png",
|
|
645
|
+
svg: "check.svg",
|
|
646
|
+
webp: "check.webp",
|
|
647
|
+
},
|
|
648
|
+
icon_background: {
|
|
649
|
+
shape: {
|
|
650
|
+
type: "rectangle",
|
|
651
|
+
corners: {
|
|
652
|
+
top_leading: 8,
|
|
653
|
+
top_trailing: 8,
|
|
654
|
+
bottom_leading: 8,
|
|
655
|
+
bottom_trailing: 8,
|
|
656
|
+
},
|
|
657
|
+
},
|
|
658
|
+
color: {
|
|
659
|
+
light: {
|
|
660
|
+
type: "hex",
|
|
661
|
+
value: "#3f3f3f",
|
|
662
|
+
},
|
|
371
663
|
},
|
|
372
664
|
},
|
|
373
665
|
},
|
|
374
|
-
connector: {
|
|
375
|
-
width: 8,
|
|
376
|
-
margin: { top: 0, bottom: 0 },
|
|
377
|
-
color: { light: { type: "hex", value: "#d3d3d3" } },
|
|
378
|
-
},
|
|
379
666
|
},
|
|
380
667
|
{
|
|
668
|
+
id: "item-3",
|
|
669
|
+
name: "item-3",
|
|
670
|
+
type: "timeline_item",
|
|
381
671
|
title: {
|
|
382
672
|
text_lid: "zxc123",
|
|
383
673
|
color: defaultColor,
|
|
384
674
|
horizontal_alignment: "center",
|
|
675
|
+
font_size: 18,
|
|
676
|
+
font_weight: "bold",
|
|
677
|
+
font_weight_int: 700,
|
|
678
|
+
type: "text",
|
|
679
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
680
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
681
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
682
|
+
id: "title-3",
|
|
683
|
+
name: "title-3",
|
|
385
684
|
},
|
|
386
685
|
description: {
|
|
387
686
|
text_lid: "zxc123d",
|
|
388
687
|
color: defaultColor,
|
|
389
688
|
horizontal_alignment: "center",
|
|
689
|
+
font_size: 18,
|
|
690
|
+
font_weight: "regular",
|
|
691
|
+
font_weight_int: 400,
|
|
692
|
+
type: "text",
|
|
693
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
694
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
695
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
696
|
+
id: "description-3",
|
|
697
|
+
name: "description-3",
|
|
390
698
|
},
|
|
391
699
|
icon: {
|
|
392
700
|
name: "check",
|
|
@@ -396,35 +704,37 @@
|
|
|
396
704
|
value: "#FAFAFA",
|
|
397
705
|
},
|
|
398
706
|
},
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
707
|
+
size: {
|
|
708
|
+
width: { type: "fixed", value: 32 },
|
|
709
|
+
height: { type: "fixed", value: 32 },
|
|
710
|
+
},
|
|
711
|
+
type: "icon",
|
|
712
|
+
padding: { top: 4, trailing: 4, bottom: 4, leading: 4 },
|
|
713
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
714
|
+
id: "icon-3",
|
|
715
|
+
icon_name: "check",
|
|
716
|
+
base_url: "https://icons.pawwalls.com/icons",
|
|
717
|
+
formats: {
|
|
718
|
+
heic: "check.heic",
|
|
719
|
+
png: "check.png",
|
|
720
|
+
svg: "check.svg",
|
|
721
|
+
webp: "check.webp",
|
|
722
|
+
},
|
|
723
|
+
icon_background: {
|
|
724
|
+
shape: {
|
|
725
|
+
type: "rectangle",
|
|
726
|
+
corners: {
|
|
727
|
+
top_leading: 8,
|
|
728
|
+
top_trailing: 8,
|
|
729
|
+
bottom_leading: 8,
|
|
730
|
+
bottom_trailing: 8,
|
|
731
|
+
},
|
|
732
|
+
},
|
|
733
|
+
color: {
|
|
734
|
+
light: {
|
|
735
|
+
type: "hex",
|
|
736
|
+
value: "#3f3f3f",
|
|
737
|
+
},
|
|
428
738
|
},
|
|
429
739
|
},
|
|
430
740
|
},
|
|
@@ -434,11 +744,12 @@
|
|
|
434
744
|
/>
|
|
435
745
|
|
|
436
746
|
<Story
|
|
437
|
-
name="
|
|
747
|
+
name="Square cornered icon with connectors"
|
|
438
748
|
args={{
|
|
439
749
|
type: "timeline",
|
|
440
|
-
item_spacing:
|
|
441
|
-
text_spacing:
|
|
750
|
+
item_spacing: 16,
|
|
751
|
+
text_spacing: 4,
|
|
752
|
+
column_gutter: 16,
|
|
442
753
|
size: { width: { type: "fill" }, height: { type: "fit" } },
|
|
443
754
|
margin: { top: 8, trailing: 8, bottom: 8, leading: 8 },
|
|
444
755
|
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
@@ -446,15 +757,36 @@
|
|
|
446
757
|
name: "default timeline",
|
|
447
758
|
items: [
|
|
448
759
|
{
|
|
760
|
+
id: "item-1",
|
|
761
|
+
name: "item-1",
|
|
762
|
+
type: "timeline_item",
|
|
449
763
|
title: {
|
|
450
|
-
text_lid: "
|
|
764
|
+
text_lid: "asd123",
|
|
451
765
|
color: defaultColor,
|
|
452
766
|
horizontal_alignment: "center",
|
|
767
|
+
font_size: 18,
|
|
768
|
+
font_weight: "bold",
|
|
769
|
+
font_weight_int: 700,
|
|
770
|
+
type: "text",
|
|
771
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
772
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
773
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
774
|
+
id: "title-1",
|
|
775
|
+
name: "title-1",
|
|
453
776
|
},
|
|
454
777
|
description: {
|
|
455
|
-
text_lid: "
|
|
778
|
+
text_lid: "asd123d",
|
|
456
779
|
color: defaultColor,
|
|
457
780
|
horizontal_alignment: "center",
|
|
781
|
+
font_size: 18,
|
|
782
|
+
font_weight: "regular",
|
|
783
|
+
font_weight_int: 400,
|
|
784
|
+
type: "text",
|
|
785
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
786
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
787
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
788
|
+
id: "description-1",
|
|
789
|
+
name: "description-1",
|
|
458
790
|
},
|
|
459
791
|
icon: {
|
|
460
792
|
name: "check",
|
|
@@ -464,71 +796,82 @@
|
|
|
464
796
|
value: "#FAFAFA",
|
|
465
797
|
},
|
|
466
798
|
},
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
799
|
+
size: {
|
|
800
|
+
width: { type: "fixed", value: 32 },
|
|
801
|
+
height: { type: "fixed", value: 32 },
|
|
802
|
+
},
|
|
803
|
+
type: "icon",
|
|
804
|
+
padding: { top: 4, trailing: 4, bottom: 4, leading: 4 },
|
|
805
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
806
|
+
id: "icon-1",
|
|
807
|
+
icon_name: "check",
|
|
808
|
+
base_url: "https://icons.pawwalls.com/icons",
|
|
809
|
+
formats: {
|
|
810
|
+
heic: "check.heic",
|
|
811
|
+
png: "check.png",
|
|
812
|
+
svg: "check.svg",
|
|
813
|
+
webp: "check.webp",
|
|
814
|
+
},
|
|
815
|
+
icon_background: {
|
|
816
|
+
shape: {
|
|
817
|
+
type: "rectangle",
|
|
818
|
+
corners: {
|
|
819
|
+
top_leading: 8,
|
|
820
|
+
top_trailing: 8,
|
|
821
|
+
bottom_leading: 8,
|
|
822
|
+
bottom_trailing: 8,
|
|
823
|
+
},
|
|
824
|
+
},
|
|
825
|
+
color: {
|
|
826
|
+
light: {
|
|
827
|
+
type: "hex",
|
|
828
|
+
value: "#3f3f3f",
|
|
829
|
+
},
|
|
476
830
|
},
|
|
477
831
|
},
|
|
478
832
|
},
|
|
479
833
|
connector: {
|
|
480
|
-
width:
|
|
481
|
-
margin: { top: 0, bottom: 0 },
|
|
482
|
-
color: { light: { type: "hex", value: "#d3d3d3" } },
|
|
483
|
-
},
|
|
484
|
-
},
|
|
485
|
-
{
|
|
486
|
-
title: {
|
|
487
|
-
text_lid: "case2",
|
|
488
|
-
color: defaultColor,
|
|
489
|
-
horizontal_alignment: "center",
|
|
490
|
-
},
|
|
491
|
-
description: {
|
|
492
|
-
text_lid: "case2d",
|
|
493
|
-
color: defaultColor,
|
|
494
|
-
horizontal_alignment: "center",
|
|
495
|
-
},
|
|
496
|
-
icon: {
|
|
497
|
-
name: "check",
|
|
834
|
+
width: 4,
|
|
498
835
|
color: {
|
|
499
|
-
light: {
|
|
500
|
-
type: "hex",
|
|
501
|
-
value: "#FAFAFA",
|
|
502
|
-
},
|
|
836
|
+
light: { type: "hex", value: "#8fb43fff" },
|
|
503
837
|
},
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
icon_background: {
|
|
508
|
-
shape: { type: "circle" },
|
|
509
|
-
color: {
|
|
510
|
-
light: {
|
|
511
|
-
type: "hex",
|
|
512
|
-
value: "#3f3f3f",
|
|
513
|
-
},
|
|
838
|
+
margin: {
|
|
839
|
+
top: 0,
|
|
840
|
+
bottom: 0,
|
|
514
841
|
},
|
|
515
842
|
},
|
|
516
|
-
connector: {
|
|
517
|
-
width: 8,
|
|
518
|
-
margin: { top: 12, bottom: 12 },
|
|
519
|
-
color: { light: { type: "hex", value: "#d3d3d3" } },
|
|
520
|
-
},
|
|
521
843
|
},
|
|
522
844
|
{
|
|
845
|
+
id: "item-2",
|
|
846
|
+
name: "item-2",
|
|
847
|
+
type: "timeline_item",
|
|
523
848
|
title: {
|
|
524
|
-
text_lid: "
|
|
849
|
+
text_lid: "qwe123",
|
|
525
850
|
color: defaultColor,
|
|
526
851
|
horizontal_alignment: "center",
|
|
852
|
+
font_size: 18,
|
|
853
|
+
font_weight: "bold",
|
|
854
|
+
font_weight_int: 700,
|
|
855
|
+
type: "text",
|
|
856
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
857
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
858
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
859
|
+
id: "title-2",
|
|
860
|
+
name: "title-2",
|
|
527
861
|
},
|
|
528
862
|
description: {
|
|
529
|
-
text_lid: "
|
|
863
|
+
text_lid: "qwe123d",
|
|
530
864
|
color: defaultColor,
|
|
531
865
|
horizontal_alignment: "center",
|
|
866
|
+
font_size: 18,
|
|
867
|
+
font_weight: "regular",
|
|
868
|
+
font_weight_int: 400,
|
|
869
|
+
type: "text",
|
|
870
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
871
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
872
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
873
|
+
id: "description-2",
|
|
874
|
+
name: "description-2",
|
|
532
875
|
},
|
|
533
876
|
icon: {
|
|
534
877
|
name: "check",
|
|
@@ -538,34 +881,82 @@
|
|
|
538
881
|
value: "#FAFAFA",
|
|
539
882
|
},
|
|
540
883
|
},
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
884
|
+
size: {
|
|
885
|
+
width: { type: "fixed", value: 32 },
|
|
886
|
+
height: { type: "fixed", value: 32 },
|
|
887
|
+
},
|
|
888
|
+
type: "icon",
|
|
889
|
+
padding: { top: 4, trailing: 4, bottom: 4, leading: 4 },
|
|
890
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
891
|
+
id: "icon-2",
|
|
892
|
+
icon_name: "check",
|
|
893
|
+
base_url: "https://icons.pawwalls.com/icons",
|
|
894
|
+
formats: {
|
|
895
|
+
heic: "check.heic",
|
|
896
|
+
png: "check.png",
|
|
897
|
+
svg: "check.svg",
|
|
898
|
+
webp: "check.webp",
|
|
899
|
+
},
|
|
900
|
+
icon_background: {
|
|
901
|
+
shape: {
|
|
902
|
+
type: "rectangle",
|
|
903
|
+
corners: {
|
|
904
|
+
top_leading: 8,
|
|
905
|
+
top_trailing: 8,
|
|
906
|
+
bottom_leading: 8,
|
|
907
|
+
bottom_trailing: 8,
|
|
908
|
+
},
|
|
909
|
+
},
|
|
910
|
+
color: {
|
|
911
|
+
light: {
|
|
912
|
+
type: "hex",
|
|
913
|
+
value: "#3f3f3f",
|
|
914
|
+
},
|
|
550
915
|
},
|
|
551
916
|
},
|
|
552
917
|
},
|
|
553
918
|
connector: {
|
|
554
|
-
width:
|
|
555
|
-
|
|
556
|
-
|
|
919
|
+
width: 4,
|
|
920
|
+
color: {
|
|
921
|
+
light: { type: "hex", value: "#8fb43fff" },
|
|
922
|
+
},
|
|
923
|
+
margin: {
|
|
924
|
+
top: 0,
|
|
925
|
+
bottom: 0,
|
|
926
|
+
},
|
|
557
927
|
},
|
|
558
928
|
},
|
|
559
929
|
{
|
|
930
|
+
id: "item-3",
|
|
931
|
+
name: "item-3",
|
|
932
|
+
type: "timeline_item",
|
|
560
933
|
title: {
|
|
561
|
-
text_lid: "
|
|
934
|
+
text_lid: "zxc123",
|
|
562
935
|
color: defaultColor,
|
|
563
936
|
horizontal_alignment: "center",
|
|
937
|
+
font_size: 18,
|
|
938
|
+
font_weight: "bold",
|
|
939
|
+
font_weight_int: 700,
|
|
940
|
+
type: "text",
|
|
941
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
942
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
943
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
944
|
+
id: "title-3",
|
|
945
|
+
name: "title-3",
|
|
564
946
|
},
|
|
565
947
|
description: {
|
|
566
|
-
text_lid: "
|
|
948
|
+
text_lid: "zxc123d",
|
|
567
949
|
color: defaultColor,
|
|
568
950
|
horizontal_alignment: "center",
|
|
951
|
+
font_size: 18,
|
|
952
|
+
font_weight: "regular",
|
|
953
|
+
font_weight_int: 400,
|
|
954
|
+
type: "text",
|
|
955
|
+
padding: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
956
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
957
|
+
size: { width: { type: "fit" }, height: { type: "fit" } },
|
|
958
|
+
id: "description-3",
|
|
959
|
+
name: "description-3",
|
|
569
960
|
},
|
|
570
961
|
icon: {
|
|
571
962
|
name: "check",
|
|
@@ -575,53 +966,51 @@
|
|
|
575
966
|
value: "#FAFAFA",
|
|
576
967
|
},
|
|
577
968
|
},
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
969
|
+
size: {
|
|
970
|
+
width: { type: "fixed", value: 32 },
|
|
971
|
+
height: { type: "fixed", value: 32 },
|
|
972
|
+
},
|
|
973
|
+
type: "icon",
|
|
974
|
+
padding: { top: 4, trailing: 4, bottom: 4, leading: 4 },
|
|
975
|
+
margin: { top: 0, trailing: 0, bottom: 0, leading: 0 },
|
|
976
|
+
id: "icon-3",
|
|
977
|
+
icon_name: "check",
|
|
978
|
+
base_url: "https://icons.pawwalls.com/icons",
|
|
979
|
+
formats: {
|
|
980
|
+
heic: "check.heic",
|
|
981
|
+
png: "check.png",
|
|
982
|
+
svg: "check.svg",
|
|
983
|
+
webp: "check.webp",
|
|
984
|
+
},
|
|
985
|
+
icon_background: {
|
|
986
|
+
shape: {
|
|
987
|
+
type: "rectangle",
|
|
988
|
+
corners: {
|
|
989
|
+
top_leading: 8,
|
|
990
|
+
top_trailing: 8,
|
|
991
|
+
bottom_leading: 8,
|
|
992
|
+
bottom_trailing: 8,
|
|
993
|
+
},
|
|
994
|
+
},
|
|
995
|
+
color: {
|
|
996
|
+
light: {
|
|
997
|
+
type: "hex",
|
|
998
|
+
value: "#3f3f3f",
|
|
999
|
+
},
|
|
587
1000
|
},
|
|
588
1001
|
},
|
|
589
1002
|
},
|
|
590
1003
|
connector: {
|
|
591
|
-
width:
|
|
592
|
-
margin: { top: 12, bottom: 0 },
|
|
593
|
-
color: { light: { type: "hex", value: "#d3d3d3" } },
|
|
594
|
-
},
|
|
595
|
-
},
|
|
596
|
-
{
|
|
597
|
-
title: {
|
|
598
|
-
text_lid: "case5",
|
|
599
|
-
color: defaultColor,
|
|
600
|
-
horizontal_alignment: "center",
|
|
601
|
-
},
|
|
602
|
-
description: {
|
|
603
|
-
text_lid: "case5d",
|
|
604
|
-
color: defaultColor,
|
|
605
|
-
horizontal_alignment: "center",
|
|
606
|
-
},
|
|
607
|
-
icon: {
|
|
608
|
-
name: "check",
|
|
1004
|
+
width: 4,
|
|
609
1005
|
color: {
|
|
610
1006
|
light: {
|
|
611
1007
|
type: "hex",
|
|
612
|
-
value: "#
|
|
1008
|
+
value: "linear-gradient(to bottom, #8fb43fff, #00000000)",
|
|
613
1009
|
},
|
|
614
1010
|
},
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
icon_background: {
|
|
619
|
-
shape: { type: "circle" },
|
|
620
|
-
color: {
|
|
621
|
-
light: {
|
|
622
|
-
type: "hex",
|
|
623
|
-
value: "#3f3f3f",
|
|
624
|
-
},
|
|
1011
|
+
margin: {
|
|
1012
|
+
top: 0,
|
|
1013
|
+
bottom: 0,
|
|
625
1014
|
},
|
|
626
1015
|
},
|
|
627
1016
|
},
|