@developer_tribe/react-builder 1.2.33 → 1.2.35
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/build-components/OnboardDot/OnboardDotProps.generated.d.ts +3 -3
- package/dist/build-components/patterns.generated.d.ts +52 -52
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.web.cjs.js +4 -4
- package/dist/index.web.cjs.js.map +1 -1
- package/dist/index.web.esm.js +6 -6
- package/dist/index.web.esm.js.map +1 -1
- package/package.json +1 -1
- package/scripts/prebuild/assets/prompt_scheme.md +34 -1
- package/scripts/prebuild/generate-prompt-schemes.js +143 -7
- package/src/assets/meta.json +1 -1
- package/src/assets/prompt-scheme-onboard.generated.ts +1 -1
- package/src/assets/prompt-scheme-paywall.generated.ts +1 -1
- package/src/attributes-editor/useAttributesEditorModel.ts +12 -15
- package/src/build-components/OnboardDot/OnboardDot.tsx +10 -8
- package/src/build-components/OnboardDot/OnboardDotProps.generated.ts +3 -3
- package/src/build-components/OnboardDot/pattern.json +13 -12
- package/src/build-components/OnboardFooter/OnboardFooter.tsx +4 -9
- package/src/build-components/OnboardFooter/pattern.json +14 -16
- package/src/build-components/patterns.generated.ts +52 -52
- package/src/modals/MockableFeatureModal.tsx +552 -5
- package/src/modals/Modal.tsx +7 -1
|
@@ -6162,13 +6162,13 @@ export const patterns = [
|
|
|
6162
6162
|
'sliding_dot',
|
|
6163
6163
|
'liquid_like',
|
|
6164
6164
|
],
|
|
6165
|
+
flexDirection: 'never',
|
|
6166
|
+
alignItems: 'never',
|
|
6167
|
+
justifyContent: 'never',
|
|
6165
6168
|
dot_thickness: 'size',
|
|
6166
6169
|
inactive_dot_opacity: 'number',
|
|
6167
6170
|
inactive_dot_color: 'color',
|
|
6168
6171
|
active_dot_color: 'color',
|
|
6169
|
-
flexDirection: 'never',
|
|
6170
|
-
alignItems: 'never',
|
|
6171
|
-
justifyContent: 'never',
|
|
6172
6172
|
},
|
|
6173
6173
|
},
|
|
6174
6174
|
meta: {
|
|
@@ -6217,41 +6217,6 @@ export const patterns = [
|
|
|
6217
6217
|
sort: 21,
|
|
6218
6218
|
preferredScale: 's',
|
|
6219
6219
|
},
|
|
6220
|
-
dotType: {
|
|
6221
|
-
label: 'Dot Type',
|
|
6222
|
-
description: 'Dot animation style.',
|
|
6223
|
-
category: 'style',
|
|
6224
|
-
specialCategory: null,
|
|
6225
|
-
sort: 1,
|
|
6226
|
-
},
|
|
6227
|
-
inactive_dot_opacity: {
|
|
6228
|
-
label: 'Inactive Dot Opacity',
|
|
6229
|
-
description: 'Opacity for inactive dots.',
|
|
6230
|
-
category: 'style',
|
|
6231
|
-
specialCategory: null,
|
|
6232
|
-
sort: 3,
|
|
6233
|
-
},
|
|
6234
|
-
inactive_dot_color: {
|
|
6235
|
-
label: 'Inactive Dot Color',
|
|
6236
|
-
description: 'Color of inactive dots.',
|
|
6237
|
-
category: 'style',
|
|
6238
|
-
specialCategory: null,
|
|
6239
|
-
sort: 4,
|
|
6240
|
-
},
|
|
6241
|
-
dot_thickness: {
|
|
6242
|
-
label: 'Dot Thickness',
|
|
6243
|
-
description: 'Dot size/diameter.',
|
|
6244
|
-
category: 'style',
|
|
6245
|
-
specialCategory: null,
|
|
6246
|
-
sort: 2,
|
|
6247
|
-
},
|
|
6248
|
-
active_dot_color: {
|
|
6249
|
-
label: 'Active Dot Color',
|
|
6250
|
-
description: 'Color of the active dot.',
|
|
6251
|
-
category: 'style',
|
|
6252
|
-
specialCategory: null,
|
|
6253
|
-
sort: 5,
|
|
6254
|
-
},
|
|
6255
6220
|
},
|
|
6256
6221
|
attributes: {
|
|
6257
6222
|
scrollable: {
|
|
@@ -6510,6 +6475,41 @@ export const patterns = [
|
|
|
6510
6475
|
specialCategory: null,
|
|
6511
6476
|
sort: 26,
|
|
6512
6477
|
},
|
|
6478
|
+
dotType: {
|
|
6479
|
+
label: 'Dot Type',
|
|
6480
|
+
description: 'Dot animation style.',
|
|
6481
|
+
category: 'style',
|
|
6482
|
+
specialCategory: null,
|
|
6483
|
+
sort: 1,
|
|
6484
|
+
},
|
|
6485
|
+
dot_thickness: {
|
|
6486
|
+
label: 'Dot Thickness',
|
|
6487
|
+
description: 'Dot size/diameter.',
|
|
6488
|
+
category: 'style',
|
|
6489
|
+
specialCategory: null,
|
|
6490
|
+
sort: 2,
|
|
6491
|
+
},
|
|
6492
|
+
inactive_dot_opacity: {
|
|
6493
|
+
label: 'Inactive Dot Opacity',
|
|
6494
|
+
description: 'Opacity for inactive dots.',
|
|
6495
|
+
category: 'style',
|
|
6496
|
+
specialCategory: null,
|
|
6497
|
+
sort: 3,
|
|
6498
|
+
},
|
|
6499
|
+
inactive_dot_color: {
|
|
6500
|
+
label: 'Inactive Dot Color',
|
|
6501
|
+
description: 'Color of inactive dots.',
|
|
6502
|
+
category: 'style',
|
|
6503
|
+
specialCategory: null,
|
|
6504
|
+
sort: 4,
|
|
6505
|
+
},
|
|
6506
|
+
active_dot_color: {
|
|
6507
|
+
label: 'Active Dot Color',
|
|
6508
|
+
description: 'Color of the active dot.',
|
|
6509
|
+
category: 'style',
|
|
6510
|
+
specialCategory: null,
|
|
6511
|
+
sort: 5,
|
|
6512
|
+
},
|
|
6513
6513
|
},
|
|
6514
6514
|
},
|
|
6515
6515
|
defaults: {
|
|
@@ -6662,20 +6662,6 @@ export const patterns = [
|
|
|
6662
6662
|
sort: 21,
|
|
6663
6663
|
preferredScale: 's',
|
|
6664
6664
|
},
|
|
6665
|
-
linkedWordFirstColor: {
|
|
6666
|
-
label: 'Linked Word First Color',
|
|
6667
|
-
description: 'Color of the first linked word.',
|
|
6668
|
-
category: 'style',
|
|
6669
|
-
specialCategory: null,
|
|
6670
|
-
sort: 3,
|
|
6671
|
-
},
|
|
6672
|
-
linkedWordSecondColor: {
|
|
6673
|
-
label: 'Linked Word Second Color',
|
|
6674
|
-
description: 'Color of the second linked word.',
|
|
6675
|
-
category: 'style',
|
|
6676
|
-
specialCategory: null,
|
|
6677
|
-
sort: 6,
|
|
6678
|
-
},
|
|
6679
6665
|
},
|
|
6680
6666
|
attributes: {
|
|
6681
6667
|
adjustsFontSizeToFit: {
|
|
@@ -6964,6 +6950,13 @@ export const patterns = [
|
|
|
6964
6950
|
specialCategory: null,
|
|
6965
6951
|
sort: 2,
|
|
6966
6952
|
},
|
|
6953
|
+
linkedWordFirstColor: {
|
|
6954
|
+
label: 'Linked Word First Color',
|
|
6955
|
+
description: 'Color of the first linked word.',
|
|
6956
|
+
category: 'other',
|
|
6957
|
+
specialCategory: null,
|
|
6958
|
+
sort: 3,
|
|
6959
|
+
},
|
|
6967
6960
|
linkedWordFirstPage: {
|
|
6968
6961
|
label: 'Linked Word First Page',
|
|
6969
6962
|
description: 'Page opened by the first link.',
|
|
@@ -6978,6 +6971,13 @@ export const patterns = [
|
|
|
6978
6971
|
specialCategory: null,
|
|
6979
6972
|
sort: 5,
|
|
6980
6973
|
},
|
|
6974
|
+
linkedWordSecondColor: {
|
|
6975
|
+
label: 'Linked Word Second Color',
|
|
6976
|
+
description: 'Color of the second linked word.',
|
|
6977
|
+
category: 'other',
|
|
6978
|
+
specialCategory: null,
|
|
6979
|
+
sort: 6,
|
|
6980
|
+
},
|
|
6981
6981
|
linkedWordSecondPage: {
|
|
6982
6982
|
label: 'Linked Word Second Page',
|
|
6983
6983
|
description: 'Page opened by the second link.',
|