@prismicio/types-internal 0.1.1 → 0.2.3
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/README.md +13 -13
- package/{dist → lib}/customtypes/CustomType.d.ts +697 -715
- package/{dist → lib}/customtypes/CustomType.js +42 -52
- package/{dist → lib}/customtypes/Format.d.ts +0 -0
- package/{dist → lib}/customtypes/Format.js +0 -0
- package/{dist → lib}/customtypes/Section.d.ts +1035 -1062
- package/lib/customtypes/Section.js +21 -0
- package/lib/customtypes/index.d.ts +4 -0
- package/lib/customtypes/index.js +9 -0
- package/{dist → lib}/customtypes/widgets/Group.d.ts +45 -45
- package/lib/customtypes/widgets/Group.js +24 -0
- package/{dist → lib}/customtypes/widgets/UID.d.ts +4 -4
- package/lib/customtypes/widgets/UID.js +21 -0
- package/{dist → lib}/customtypes/widgets/Widget.d.ts +1036 -1063
- package/lib/customtypes/widgets/Widget.js +27 -0
- package/{dist → lib}/customtypes/widgets/WidgetTypes.d.ts +0 -0
- package/{dist → lib}/customtypes/widgets/WidgetTypes.js +0 -0
- package/lib/customtypes/widgets/index.d.ts +7 -0
- package/lib/customtypes/widgets/index.js +14 -0
- package/{dist → lib}/customtypes/widgets/nestable/BooleanField.d.ts +3 -3
- package/lib/customtypes/widgets/nestable/BooleanField.js +21 -0
- package/{dist → lib}/customtypes/widgets/nestable/Color.d.ts +4 -4
- package/lib/customtypes/widgets/nestable/Color.js +20 -0
- package/{dist → lib}/customtypes/widgets/nestable/Date.d.ts +4 -4
- package/lib/customtypes/widgets/nestable/Date.js +21 -0
- package/{dist → lib}/customtypes/widgets/nestable/Embed.d.ts +4 -4
- package/lib/customtypes/widgets/nestable/Embed.js +21 -0
- package/{dist → lib}/customtypes/widgets/nestable/GeoPoint.d.ts +4 -4
- package/lib/customtypes/widgets/nestable/GeoPoint.js +19 -0
- package/lib/customtypes/widgets/nestable/Image.d.ts +23 -0
- package/lib/customtypes/widgets/nestable/Image.js +29 -0
- package/{dist → lib}/customtypes/widgets/nestable/IntegrationField.d.ts +4 -4
- package/lib/customtypes/widgets/nestable/IntegrationField.js +21 -0
- package/{dist → lib}/customtypes/widgets/nestable/Link.d.ts +4 -4
- package/lib/customtypes/widgets/nestable/Link.js +54 -0
- package/{dist → lib}/customtypes/widgets/nestable/NestableWidget.d.ts +42 -42
- package/lib/customtypes/widgets/nestable/NestableWidget.js +37 -0
- package/{dist → lib}/customtypes/widgets/nestable/Number.d.ts +4 -4
- package/lib/customtypes/widgets/nestable/Number.js +24 -0
- package/{dist → lib}/customtypes/widgets/nestable/Range.d.ts +4 -4
- package/lib/customtypes/widgets/nestable/Range.js +24 -0
- package/{dist → lib}/customtypes/widgets/nestable/RichText.d.ts +6 -6
- package/lib/customtypes/widgets/nestable/RichText.js +111 -0
- package/lib/customtypes/widgets/nestable/Select.d.ts +15 -0
- package/lib/customtypes/widgets/nestable/Select.js +22 -0
- package/{dist → lib}/customtypes/widgets/nestable/Separator.d.ts +3 -3
- package/lib/customtypes/widgets/nestable/Separator.js +18 -0
- package/{dist → lib}/customtypes/widgets/nestable/Text.d.ts +4 -4
- package/lib/customtypes/widgets/nestable/Text.js +21 -0
- package/{dist → lib}/customtypes/widgets/nestable/Timestamp.d.ts +4 -4
- package/lib/customtypes/widgets/nestable/Timestamp.js +21 -0
- package/lib/customtypes/widgets/nestable/index.d.ts +15 -0
- package/{dist → lib}/customtypes/widgets/nestable/index.js +0 -0
- package/{dist → lib}/customtypes/widgets/shared/ImageConstraint.d.ts +3 -3
- package/lib/customtypes/widgets/shared/ImageConstraint.js +31 -0
- package/lib/customtypes/widgets/shared/index.d.ts +1 -0
- package/{dist → lib}/customtypes/widgets/shared/index.js +0 -0
- package/{dist → lib}/customtypes/widgets/slices/CompositeSlice.d.ts +87 -87
- package/lib/customtypes/widgets/slices/CompositeSlice.js +25 -0
- package/{dist → lib}/customtypes/widgets/slices/LegacySlice.d.ts +86 -95
- package/lib/customtypes/widgets/slices/LegacySlice.js +8 -0
- package/{dist → lib}/customtypes/widgets/slices/SharedSlice.d.ts +84 -84
- package/lib/customtypes/widgets/slices/SharedSlice.js +35 -0
- package/{dist → lib}/customtypes/widgets/slices/SharedSliceRef.d.ts +2 -2
- package/lib/customtypes/widgets/slices/SharedSliceRef.js +9 -0
- package/lib/customtypes/widgets/slices/Slice.d.ts +6 -0
- package/{dist → lib}/customtypes/widgets/slices/Slice.js +0 -0
- package/{dist → lib}/customtypes/widgets/slices/Slices.d.ts +1550 -1604
- package/lib/customtypes/widgets/slices/Slices.js +93 -0
- package/{dist → lib}/customtypes/widgets/slices/SlicesTypes.d.ts +0 -0
- package/{dist → lib}/customtypes/widgets/slices/SlicesTypes.js +0 -0
- package/lib/customtypes/widgets/slices/index.d.ts +7 -0
- package/lib/customtypes/widgets/slices/index.js +16 -0
- package/lib/documents/DocumentData.d.ts +8 -0
- package/lib/documents/DocumentData.js +28 -0
- package/lib/documents/index.d.ts +2 -0
- package/lib/documents/index.js +7 -0
- package/lib/documents/widgets/EmptyContent.d.ts +8 -0
- package/lib/documents/widgets/EmptyContent.js +9 -0
- package/lib/documents/widgets/GroupContent.d.ts +16 -0
- package/lib/documents/widgets/GroupContent.js +59 -0
- package/lib/documents/widgets/SimpleWidgetContent.d.ts +20 -0
- package/lib/documents/widgets/SimpleWidgetContent.js +75 -0
- package/lib/documents/widgets/StaticWidgetContent.d.ts +10 -0
- package/lib/documents/widgets/StaticWidgetContent.js +26 -0
- package/lib/documents/widgets/UIDContent.d.ts +7 -0
- package/lib/documents/widgets/UIDContent.js +10 -0
- package/lib/documents/widgets/index.d.ts +35 -0
- package/lib/documents/widgets/index.js +36 -0
- package/lib/documents/widgets/nestable/BooleanContent.d.ts +8 -0
- package/lib/documents/widgets/nestable/BooleanContent.js +11 -0
- package/lib/documents/widgets/nestable/EmbedContent.d.ts +40 -0
- package/lib/documents/widgets/nestable/EmbedContent.js +36 -0
- package/lib/documents/widgets/nestable/FieldContent.d.ts +12 -0
- package/lib/documents/widgets/nestable/FieldContent.js +37 -0
- package/lib/documents/widgets/nestable/GeoPointContent.d.ts +17 -0
- package/lib/documents/widgets/nestable/GeoPointContent.js +13 -0
- package/lib/documents/widgets/nestable/ImageContent.d.ts +127 -0
- package/lib/documents/widgets/nestable/ImageContent.js +41 -0
- package/lib/documents/widgets/nestable/IntegrationFieldsContent.d.ts +8 -0
- package/lib/documents/widgets/nestable/IntegrationFieldsContent.js +16 -0
- package/lib/documents/widgets/nestable/Link/DocumentLink.d.ts +12 -0
- package/lib/documents/widgets/nestable/Link/DocumentLink.js +13 -0
- package/lib/documents/widgets/nestable/Link/ExternalLink.d.ts +24 -0
- package/lib/documents/widgets/nestable/Link/ExternalLink.js +24 -0
- package/lib/documents/widgets/nestable/Link/FileLink.d.ts +22 -0
- package/lib/documents/widgets/nestable/Link/FileLink.js +24 -0
- package/lib/documents/widgets/nestable/Link/ImageLink.d.ts +28 -0
- package/lib/documents/widgets/nestable/Link/ImageLink.js +26 -0
- package/lib/documents/widgets/nestable/Link/LinkContent.d.ts +36 -0
- package/lib/documents/widgets/nestable/Link/LinkContent.js +13 -0
- package/lib/documents/widgets/nestable/Link/index.d.ts +89 -0
- package/lib/documents/widgets/nestable/Link/index.js +35 -0
- package/lib/documents/widgets/nestable/SeparatorContent.d.ts +7 -0
- package/lib/documents/widgets/nestable/SeparatorContent.js +10 -0
- package/lib/documents/widgets/nestable/StructuredTextContent/Block.d.ts +274 -0
- package/lib/documents/widgets/nestable/StructuredTextContent/Block.js +97 -0
- package/lib/documents/widgets/nestable/StructuredTextContent/index.d.ts +9 -0
- package/lib/documents/widgets/nestable/StructuredTextContent/index.js +14 -0
- package/lib/documents/widgets/nestable/index.d.ts +26 -0
- package/lib/documents/widgets/nestable/index.js +40 -0
- package/lib/documents/widgets/slices/CompositeSliceContent.d.ts +14 -0
- package/lib/documents/widgets/slices/CompositeSliceContent.js +50 -0
- package/lib/documents/widgets/slices/SharedSliceContent.d.ts +15 -0
- package/lib/documents/widgets/slices/SharedSliceContent.js +62 -0
- package/lib/documents/widgets/slices/SimpleSliceContent.d.ts +6 -0
- package/lib/documents/widgets/slices/SimpleSliceContent.js +6 -0
- package/lib/documents/widgets/slices/SliceWidgetContent.d.ts +8 -0
- package/lib/documents/widgets/slices/SliceWidgetContent.js +26 -0
- package/lib/documents/widgets/slices/SlicesContent.d.ts +17 -0
- package/lib/documents/widgets/slices/SlicesContent.js +51 -0
- package/lib/documents/widgets/slices/index.d.ts +5 -0
- package/lib/documents/widgets/slices/index.js +8 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.js +7 -0
- package/lib/validators/DateFromString.d.ts +3 -0
- package/lib/validators/DateFromString.js +10 -0
- package/lib/validators/DateFromStringOrNumber.d.ts +3 -0
- package/lib/validators/DateFromStringOrNumber.js +10 -0
- package/lib/validators/DateFromTsMs.d.ts +3 -0
- package/lib/validators/DateFromTsMs.js +10 -0
- package/lib/validators/IntFromNumber.d.ts +5 -0
- package/lib/validators/IntFromNumber.js +14 -0
- package/lib/validators/IntFromPixels.d.ts +8 -0
- package/lib/validators/IntFromPixels.js +24 -0
- package/lib/validators/NonEmptyString.d.ts +3 -0
- package/lib/validators/NonEmptyString.js +6 -0
- package/lib/validators/NonEmptyStringOrNull.d.ts +3 -0
- package/lib/validators/NonEmptyStringOrNull.js +15 -0
- package/lib/validators/NumberOrNull.d.ts +3 -0
- package/lib/validators/NumberOrNull.js +6 -0
- package/lib/validators/StringFromBoolean.d.ts +5 -0
- package/lib/validators/StringFromBoolean.js +10 -0
- package/lib/validators/StringFromNumber.d.ts +5 -0
- package/lib/validators/StringFromNumber.js +10 -0
- package/lib/validators/StringOrNull.d.ts +3 -0
- package/lib/validators/StringOrNull.js +6 -0
- package/lib/validators/function.d.ts +14 -0
- package/lib/validators/function.js +60 -0
- package/lib/validators/index.d.ts +12 -0
- package/lib/validators/index.js +27 -0
- package/package.json +30 -18
- package/src/customtypes/CustomType.ts +173 -116
- package/src/customtypes/Format.ts +3 -3
- package/src/customtypes/Section.ts +26 -13
- package/src/customtypes/index.ts +4 -4
- package/src/customtypes/widgets/Group.ts +21 -20
- package/src/customtypes/widgets/UID.ts +18 -17
- package/src/customtypes/widgets/Widget.ts +22 -23
- package/src/customtypes/widgets/WidgetTypes.ts +21 -21
- package/src/customtypes/widgets/index.ts +7 -7
- package/src/customtypes/widgets/nestable/BooleanField.ts +19 -19
- package/src/customtypes/widgets/nestable/Color.ts +17 -16
- package/src/customtypes/widgets/nestable/Date.ts +19 -18
- package/src/customtypes/widgets/nestable/Embed.ts +19 -18
- package/src/customtypes/widgets/nestable/GeoPoint.ts +17 -16
- package/src/customtypes/widgets/nestable/Image.ts +26 -26
- package/src/customtypes/widgets/nestable/IntegrationField.ts +18 -17
- package/src/customtypes/widgets/nestable/Link.ts +80 -68
- package/src/customtypes/widgets/nestable/NestableWidget.ts +32 -32
- package/src/customtypes/widgets/nestable/Number.ts +22 -21
- package/src/customtypes/widgets/nestable/Range.ts +22 -21
- package/src/customtypes/widgets/nestable/RichText.ts +164 -134
- package/src/customtypes/widgets/nestable/Select.ts +22 -21
- package/src/customtypes/widgets/nestable/Separator.ts +15 -14
- package/src/customtypes/widgets/nestable/Text.ts +18 -17
- package/src/customtypes/widgets/nestable/Timestamp.ts +19 -18
- package/src/customtypes/widgets/nestable/index.ts +15 -15
- package/src/customtypes/widgets/shared/ImageConstraint.ts +31 -29
- package/src/customtypes/widgets/shared/index.ts +1 -1
- package/src/customtypes/widgets/slices/CompositeSlice.ts +21 -21
- package/src/customtypes/widgets/slices/LegacySlice.ts +5 -10
- package/src/customtypes/widgets/slices/SharedSlice.ts +33 -31
- package/src/customtypes/widgets/slices/SharedSliceRef.ts +6 -6
- package/src/customtypes/widgets/slices/Slice.ts +4 -4
- package/src/customtypes/widgets/slices/Slices.ts +95 -73
- package/src/customtypes/widgets/slices/SlicesTypes.ts +3 -3
- package/src/customtypes/widgets/slices/index.ts +7 -7
- package/src/documents/DocumentData.ts +54 -0
- package/src/documents/index.ts +2 -0
- package/src/documents/widgets/EmptyContent.ts +8 -0
- package/src/documents/widgets/GroupContent.ts +91 -0
- package/src/documents/widgets/SimpleWidgetContent.ts +96 -0
- package/src/documents/widgets/StaticWidgetContent.ts +46 -0
- package/src/documents/widgets/UIDContent.ts +18 -0
- package/src/documents/widgets/index.ts +56 -0
- package/src/documents/widgets/nestable/BooleanContent.ts +21 -0
- package/src/documents/widgets/nestable/EmbedContent.ts +54 -0
- package/src/documents/widgets/nestable/FieldContent.ts +45 -0
- package/src/documents/widgets/nestable/GeoPointContent.ts +18 -0
- package/src/documents/widgets/nestable/ImageContent.ts +51 -0
- package/src/documents/widgets/nestable/IntegrationFieldsContent.ts +26 -0
- package/src/documents/widgets/nestable/Link/DocumentLink.ts +18 -0
- package/src/documents/widgets/nestable/Link/ExternalLink.ts +31 -0
- package/src/documents/widgets/nestable/Link/FileLink.ts +29 -0
- package/src/documents/widgets/nestable/Link/ImageLink.ts +31 -0
- package/src/documents/widgets/nestable/Link/LinkContent.ts +22 -0
- package/src/documents/widgets/nestable/Link/index.ts +33 -0
- package/src/documents/widgets/nestable/SeparatorContent.ts +8 -0
- package/src/documents/widgets/nestable/StructuredTextContent/Block.ts +122 -0
- package/src/documents/widgets/nestable/StructuredTextContent/index.ts +25 -0
- package/src/documents/widgets/nestable/index.ts +35 -0
- package/src/documents/widgets/slices/CompositeSliceContent.ts +77 -0
- package/src/documents/widgets/slices/SharedSliceContent.ts +94 -0
- package/src/documents/widgets/slices/SimpleSliceContent.ts +4 -0
- package/src/documents/widgets/slices/SliceWidgetContent.ts +51 -0
- package/src/documents/widgets/slices/SlicesContent.ts +91 -0
- package/src/documents/widgets/slices/index.ts +5 -0
- package/src/index.ts +3 -1
- package/src/validators/DateFromString.ts +17 -0
- package/src/validators/DateFromStringOrNumber.ts +17 -0
- package/src/validators/DateFromTsMs.ts +17 -0
- package/src/validators/IntFromNumber.ts +22 -24
- package/src/validators/IntFromPixels.ts +27 -26
- package/src/validators/NonEmptyString.ts +9 -0
- package/src/validators/NonEmptyStringOrNull.ts +22 -0
- package/src/validators/NumberOrNull.ts +5 -0
- package/src/validators/StringFromBoolean.ts +17 -19
- package/src/validators/StringFromNumber.ts +17 -19
- package/src/validators/StringOrNull.ts +4 -2
- package/src/validators/function.ts +71 -0
- package/src/validators/index.ts +12 -0
- package/dist/customtypes/Section.js +0 -40
- package/dist/customtypes/index.d.ts +0 -4
- package/dist/customtypes/index.js +0 -30
- package/dist/customtypes/widgets/Group.js +0 -45
- package/dist/customtypes/widgets/UID.js +0 -42
- package/dist/customtypes/widgets/Widget.js +0 -51
- package/dist/customtypes/widgets/index.d.ts +0 -7
- package/dist/customtypes/widgets/index.js +0 -35
- package/dist/customtypes/widgets/nestable/BooleanField.js +0 -42
- package/dist/customtypes/widgets/nestable/Color.js +0 -41
- package/dist/customtypes/widgets/nestable/Date.js +0 -42
- package/dist/customtypes/widgets/nestable/Embed.js +0 -42
- package/dist/customtypes/widgets/nestable/GeoPoint.js +0 -40
- package/dist/customtypes/widgets/nestable/Image.d.ts +0 -23
- package/dist/customtypes/widgets/nestable/Image.js +0 -50
- package/dist/customtypes/widgets/nestable/IntegrationField.js +0 -42
- package/dist/customtypes/widgets/nestable/Link.js +0 -78
- package/dist/customtypes/widgets/nestable/NestableWidget.js +0 -58
- package/dist/customtypes/widgets/nestable/Number.js +0 -45
- package/dist/customtypes/widgets/nestable/Range.js +0 -45
- package/dist/customtypes/widgets/nestable/RichText.js +0 -134
- package/dist/customtypes/widgets/nestable/Select.d.ts +0 -15
- package/dist/customtypes/widgets/nestable/Select.js +0 -45
- package/dist/customtypes/widgets/nestable/Separator.js +0 -39
- package/dist/customtypes/widgets/nestable/Text.js +0 -42
- package/dist/customtypes/widgets/nestable/Timestamp.js +0 -42
- package/dist/customtypes/widgets/nestable/index.d.ts +0 -15
- package/dist/customtypes/widgets/shared/ImageConstraint.js +0 -48
- package/dist/customtypes/widgets/shared/index.d.ts +0 -1
- package/dist/customtypes/widgets/slices/CompositeSlice.js +0 -46
- package/dist/customtypes/widgets/slices/LegacySlice.js +0 -34
- package/dist/customtypes/widgets/slices/SharedSlice.js +0 -56
- package/dist/customtypes/widgets/slices/SharedSliceRef.js +0 -30
- package/dist/customtypes/widgets/slices/Slice.d.ts +0 -6
- package/dist/customtypes/widgets/slices/Slices.js +0 -106
- package/dist/customtypes/widgets/slices/index.d.ts +0 -7
- package/dist/customtypes/widgets/slices/index.js +0 -37
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -23
- package/dist/index.js.map +0 -1
- package/dist/validators/IntFromNumber.d.ts +0 -7
- package/dist/validators/IntFromNumber.js +0 -35
- package/dist/validators/IntFromPixels.d.ts +0 -7
- package/dist/validators/IntFromPixels.js +0 -43
- package/dist/validators/StringFromBoolean.d.ts +0 -7
- package/dist/validators/StringFromBoolean.js +0 -31
- package/dist/validators/StringFromNumber.d.ts +0 -7
- package/dist/validators/StringFromNumber.js +0 -31
- package/dist/validators/StringOrNull.d.ts +0 -2
- package/dist/validators/StringOrNull.js +0 -24
|
@@ -1,25 +1,26 @@
|
|
|
1
|
-
import * as t from
|
|
2
|
-
|
|
3
|
-
import
|
|
1
|
+
import * as t from "io-ts"
|
|
2
|
+
|
|
3
|
+
import { StringOrNull } from "../../../validators"
|
|
4
|
+
import WidgetTypes from "../WidgetTypes"
|
|
4
5
|
|
|
5
6
|
const ColorConfig = t.exact(
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
t.partial({
|
|
8
|
+
label: StringOrNull,
|
|
9
|
+
placeholder: t.string,
|
|
10
|
+
}),
|
|
10
11
|
)
|
|
11
12
|
type ColorConfig = t.TypeOf<typeof ColorConfig>
|
|
12
13
|
|
|
13
14
|
const Color = t.exact(
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
15
|
+
t.intersection([
|
|
16
|
+
t.type({
|
|
17
|
+
type: t.literal(WidgetTypes.Color),
|
|
18
|
+
}),
|
|
19
|
+
t.partial({
|
|
20
|
+
fieldset: StringOrNull,
|
|
21
|
+
config: ColorConfig,
|
|
22
|
+
}),
|
|
23
|
+
]),
|
|
23
24
|
)
|
|
24
25
|
type Color = t.TypeOf<typeof Color>
|
|
25
26
|
|
|
@@ -1,27 +1,28 @@
|
|
|
1
|
-
import * as t from
|
|
2
|
-
|
|
3
|
-
import
|
|
1
|
+
import * as t from "io-ts"
|
|
2
|
+
|
|
3
|
+
import { StringOrNull } from "../../../validators"
|
|
4
|
+
import WidgetTypes from "../WidgetTypes"
|
|
4
5
|
|
|
5
6
|
const DateConfig = t.exact(
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
t.partial({
|
|
8
|
+
label: StringOrNull,
|
|
9
|
+
placeholder: t.string,
|
|
10
|
+
default: t.string,
|
|
11
|
+
}),
|
|
11
12
|
)
|
|
12
13
|
type DateConfig = t.TypeOf<typeof DateConfig>
|
|
13
14
|
|
|
14
15
|
const Date = t.exact(
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
16
|
+
t.intersection([
|
|
17
|
+
t.type({
|
|
18
|
+
type: t.literal(WidgetTypes.Date),
|
|
19
|
+
}),
|
|
20
|
+
t.partial({
|
|
21
|
+
fieldset: StringOrNull,
|
|
22
|
+
config: DateConfig,
|
|
23
|
+
}),
|
|
24
|
+
]),
|
|
24
25
|
)
|
|
25
26
|
type Date = t.TypeOf<typeof Date>
|
|
26
27
|
|
|
27
|
-
export default Date
|
|
28
|
+
export default Date
|
|
@@ -1,27 +1,28 @@
|
|
|
1
|
-
import * as t from
|
|
2
|
-
|
|
3
|
-
import
|
|
1
|
+
import * as t from "io-ts"
|
|
2
|
+
|
|
3
|
+
import { StringOrNull } from "../../../validators"
|
|
4
|
+
import WidgetTypes from "../WidgetTypes"
|
|
4
5
|
|
|
5
6
|
const EmbedConfig = t.exact(
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
t.partial({
|
|
8
|
+
label: StringOrNull,
|
|
9
|
+
placeholder: t.string,
|
|
10
|
+
useAsTitle: t.boolean,
|
|
11
|
+
}),
|
|
11
12
|
)
|
|
12
13
|
type EmbedConfig = t.TypeOf<typeof EmbedConfig>
|
|
13
14
|
|
|
14
15
|
const Embed = t.exact(
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
16
|
+
t.intersection([
|
|
17
|
+
t.type({
|
|
18
|
+
type: t.literal(WidgetTypes.Embed),
|
|
19
|
+
}),
|
|
20
|
+
t.partial({
|
|
21
|
+
fieldset: StringOrNull,
|
|
22
|
+
config: EmbedConfig,
|
|
23
|
+
}),
|
|
24
|
+
]),
|
|
24
25
|
)
|
|
25
26
|
type Embed = t.TypeOf<typeof Embed>
|
|
26
27
|
|
|
27
|
-
export default Embed
|
|
28
|
+
export default Embed
|
|
@@ -1,25 +1,26 @@
|
|
|
1
|
-
import * as t from
|
|
2
|
-
|
|
3
|
-
import
|
|
1
|
+
import * as t from "io-ts"
|
|
2
|
+
|
|
3
|
+
import { StringOrNull } from "../../../validators"
|
|
4
|
+
import WidgetTypes from "../WidgetTypes"
|
|
4
5
|
|
|
5
6
|
const GeoPointConfig = t.exact(
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
t.partial({
|
|
8
|
+
label: StringOrNull,
|
|
9
|
+
}),
|
|
9
10
|
)
|
|
10
11
|
type GeoPointConfig = t.TypeOf<typeof GeoPointConfig>
|
|
11
12
|
|
|
12
13
|
const GeoPoint = t.exact(
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
14
|
+
t.intersection([
|
|
15
|
+
t.type({
|
|
16
|
+
type: t.literal(WidgetTypes.GeoPoint),
|
|
17
|
+
}),
|
|
18
|
+
t.partial({
|
|
19
|
+
fieldset: StringOrNull,
|
|
20
|
+
config: GeoPointConfig,
|
|
21
|
+
}),
|
|
22
|
+
]),
|
|
22
23
|
)
|
|
23
24
|
type GeoPoint = t.TypeOf<typeof GeoPoint>
|
|
24
25
|
|
|
25
|
-
export default GeoPoint
|
|
26
|
+
export default GeoPoint
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
import * as t from
|
|
2
|
-
|
|
3
|
-
import
|
|
4
|
-
import ImageConstraint from
|
|
1
|
+
import * as t from "io-ts"
|
|
2
|
+
|
|
3
|
+
import { StringOrNull } from "../../../validators"
|
|
4
|
+
import ImageConstraint from "../shared/ImageConstraint"
|
|
5
|
+
import WidgetTypes from "../WidgetTypes"
|
|
5
6
|
|
|
6
7
|
const Thumbnail = t.exact(
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
8
|
+
t.intersection([
|
|
9
|
+
t.type({
|
|
10
|
+
name: t.string,
|
|
11
|
+
}),
|
|
12
|
+
ImageConstraint,
|
|
13
|
+
]),
|
|
13
14
|
)
|
|
14
15
|
type Thumbnail = t.TypeOf<typeof Thumbnail>
|
|
15
16
|
|
|
16
17
|
const ImageConfig = t.exact(
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
18
|
+
t.partial({
|
|
19
|
+
label: StringOrNull,
|
|
20
|
+
placeholder: t.string,
|
|
21
|
+
constraint: ImageConstraint,
|
|
22
|
+
thumbnails: t.array(Thumbnail),
|
|
23
|
+
}),
|
|
23
24
|
)
|
|
24
25
|
type ImageConfig = t.TypeOf<typeof ImageConfig>
|
|
25
26
|
|
|
26
|
-
|
|
27
27
|
const Image = t.exact(
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
28
|
+
t.intersection([
|
|
29
|
+
t.type({
|
|
30
|
+
type: t.literal(WidgetTypes.Image),
|
|
31
|
+
}),
|
|
32
|
+
t.partial({
|
|
33
|
+
fieldset: StringOrNull,
|
|
34
|
+
config: ImageConfig,
|
|
35
|
+
}),
|
|
36
|
+
]),
|
|
37
37
|
)
|
|
38
38
|
type Image = t.TypeOf<typeof Image>
|
|
39
39
|
|
|
@@ -1,26 +1,27 @@
|
|
|
1
|
-
import * as t from
|
|
2
|
-
|
|
3
|
-
import
|
|
1
|
+
import * as t from "io-ts"
|
|
2
|
+
|
|
3
|
+
import { StringOrNull } from "../../../validators"
|
|
4
|
+
import WidgetTypes from "../WidgetTypes"
|
|
4
5
|
|
|
5
6
|
const IntegrationFieldConfig = t.exact(
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
t.partial({
|
|
8
|
+
label: StringOrNull,
|
|
9
|
+
placeholder: t.string,
|
|
10
|
+
catalog: t.string,
|
|
11
|
+
}),
|
|
11
12
|
)
|
|
12
13
|
type IntegrationFieldConfig = t.TypeOf<typeof IntegrationFieldConfig>
|
|
13
14
|
|
|
14
15
|
const IntegrationField = t.exact(
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
16
|
+
t.intersection([
|
|
17
|
+
t.type({
|
|
18
|
+
type: t.literal(WidgetTypes.IntegrationField),
|
|
19
|
+
}),
|
|
20
|
+
t.partial({
|
|
21
|
+
fieldset: StringOrNull,
|
|
22
|
+
config: IntegrationFieldConfig,
|
|
23
|
+
}),
|
|
24
|
+
]),
|
|
24
25
|
)
|
|
25
26
|
type IntegrationField = t.TypeOf<typeof IntegrationField>
|
|
26
27
|
|
|
@@ -1,84 +1,96 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import {
|
|
4
|
-
import { StringOrNull } from '../../../validators/StringOrNull'
|
|
5
|
-
import WidgetTypes from '../WidgetTypes'
|
|
1
|
+
import { either } from "fp-ts/lib/Either"
|
|
2
|
+
import * as t from "io-ts"
|
|
3
|
+
import { withFallback } from "io-ts-types/lib/withFallback"
|
|
6
4
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
5
|
+
import { StringOrNull } from "../../../validators"
|
|
6
|
+
import WidgetTypes from "../WidgetTypes"
|
|
7
|
+
|
|
8
|
+
const arrayString = (
|
|
9
|
+
entries:
|
|
10
|
+
| string
|
|
11
|
+
| string[]
|
|
12
|
+
| {
|
|
13
|
+
[x: string]: {
|
|
14
|
+
name: string
|
|
15
|
+
}[]
|
|
16
|
+
}
|
|
17
|
+
| undefined,
|
|
18
|
+
) => {
|
|
19
|
+
if (entries instanceof Array) {
|
|
20
|
+
const isValidEntries = entries.reduce(
|
|
21
|
+
(acc, l) => acc && typeof l === "string",
|
|
22
|
+
true,
|
|
23
|
+
)
|
|
24
|
+
if (isValidEntries) return t.success(entries)
|
|
25
|
+
}
|
|
26
|
+
return
|
|
16
27
|
}
|
|
17
28
|
|
|
18
|
-
const plainString = (
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
29
|
+
const plainString = (
|
|
30
|
+
entries:
|
|
31
|
+
| string
|
|
32
|
+
| string[]
|
|
33
|
+
| {
|
|
34
|
+
[x: string]: {
|
|
35
|
+
name: string
|
|
36
|
+
}[]
|
|
37
|
+
}
|
|
38
|
+
| undefined,
|
|
39
|
+
) => {
|
|
40
|
+
if (typeof entries === "string") {
|
|
41
|
+
return t.success([entries])
|
|
42
|
+
}
|
|
43
|
+
return
|
|
26
44
|
}
|
|
27
45
|
|
|
28
46
|
const MasksArrayString = new t.Type<Array<string>, object, unknown>(
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
t.failure(u, context)
|
|
43
|
-
)
|
|
44
|
-
}
|
|
45
|
-
)
|
|
46
|
-
},
|
|
47
|
-
res => res
|
|
47
|
+
"MasksArrayString",
|
|
48
|
+
(u: unknown): u is Array<string> => {
|
|
49
|
+
return u instanceof Array
|
|
50
|
+
},
|
|
51
|
+
(u: unknown, context: t.Context) => {
|
|
52
|
+
return either.chain(
|
|
53
|
+
t.union([t.array(t.string), t.string]).validate(u, context),
|
|
54
|
+
(masks) => {
|
|
55
|
+
return arrayString(masks) || plainString(masks) || t.failure(u, context)
|
|
56
|
+
},
|
|
57
|
+
)
|
|
58
|
+
},
|
|
59
|
+
(res) => res,
|
|
48
60
|
)
|
|
49
61
|
|
|
50
62
|
const LinkConfig = t.exact(
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
63
|
+
t.partial({
|
|
64
|
+
label: StringOrNull,
|
|
65
|
+
useAsTitle: t.boolean,
|
|
66
|
+
placeholder: t.string,
|
|
67
|
+
select: withFallback(
|
|
68
|
+
t.union([
|
|
69
|
+
t.literal("media"),
|
|
70
|
+
t.literal("document"),
|
|
71
|
+
t.literal("web"),
|
|
72
|
+
t.null,
|
|
73
|
+
]),
|
|
74
|
+
null,
|
|
75
|
+
),
|
|
76
|
+
customtypes: t.array(t.string), // `customtypes` and `masks` are alternatives
|
|
77
|
+
masks: MasksArrayString,
|
|
78
|
+
tags: MasksArrayString,
|
|
79
|
+
allowTargetBlank: t.boolean,
|
|
80
|
+
}),
|
|
69
81
|
)
|
|
70
82
|
type LinkConfig = t.TypeOf<typeof LinkConfig>
|
|
71
83
|
|
|
72
84
|
const Link = t.exact(
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
85
|
+
t.intersection([
|
|
86
|
+
t.type({
|
|
87
|
+
type: t.literal(WidgetTypes.Link),
|
|
88
|
+
}),
|
|
89
|
+
t.partial({
|
|
90
|
+
fieldset: StringOrNull,
|
|
91
|
+
config: LinkConfig,
|
|
92
|
+
}),
|
|
93
|
+
]),
|
|
82
94
|
)
|
|
83
95
|
type Link = t.TypeOf<typeof Link>
|
|
84
96
|
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
import * as t from
|
|
1
|
+
import * as t from "io-ts"
|
|
2
2
|
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import Date from
|
|
6
|
-
import Embed from
|
|
7
|
-
import GeoPoint from
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import
|
|
15
|
-
import
|
|
16
|
-
import
|
|
17
|
-
import
|
|
3
|
+
import BooleanField from "./BooleanField"
|
|
4
|
+
import Color from "./Color"
|
|
5
|
+
import Date from "./Date"
|
|
6
|
+
import Embed from "./Embed"
|
|
7
|
+
import GeoPoint from "./GeoPoint"
|
|
8
|
+
import Image from "./Image"
|
|
9
|
+
import IntegrationField from "./IntegrationField"
|
|
10
|
+
import Link from "./Link"
|
|
11
|
+
import Number from "./Number"
|
|
12
|
+
import Range from "./Range"
|
|
13
|
+
import RichText from "./RichText"
|
|
14
|
+
import Select from "./Select"
|
|
15
|
+
import Separator from "./Separator"
|
|
16
|
+
import Text from "./Text"
|
|
17
|
+
import Timestamp from "./Timestamp"
|
|
18
18
|
|
|
19
19
|
const NestableWidget = t.union([
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
20
|
+
Color,
|
|
21
|
+
BooleanField,
|
|
22
|
+
Embed,
|
|
23
|
+
GeoPoint,
|
|
24
|
+
Date,
|
|
25
|
+
Number,
|
|
26
|
+
Range,
|
|
27
|
+
RichText,
|
|
28
|
+
Select,
|
|
29
|
+
Separator,
|
|
30
|
+
Text,
|
|
31
|
+
Timestamp,
|
|
32
|
+
Link,
|
|
33
|
+
Image,
|
|
34
|
+
IntegrationField,
|
|
35
35
|
])
|
|
36
36
|
|
|
37
37
|
type NestableWidget = t.TypeOf<typeof NestableWidget>
|
|
38
38
|
|
|
39
|
-
export default NestableWidget
|
|
39
|
+
export default NestableWidget
|
|
@@ -1,30 +1,31 @@
|
|
|
1
|
-
import * as t from
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
import {
|
|
1
|
+
import * as t from "io-ts"
|
|
2
|
+
import { NumberFromString } from "io-ts-types/lib/NumberFromString"
|
|
3
|
+
|
|
4
|
+
import { StringOrNull } from "../../../validators"
|
|
5
|
+
import WidgetTypes from "../WidgetTypes"
|
|
5
6
|
|
|
6
7
|
const NumberConfig = t.exact(
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
8
|
+
t.partial({
|
|
9
|
+
label: StringOrNull,
|
|
10
|
+
placeholder: t.string,
|
|
11
|
+
min: t.union([t.number, NumberFromString]),
|
|
12
|
+
max: t.union([t.number, NumberFromString]),
|
|
13
|
+
step: t.union([t.number, NumberFromString]),
|
|
14
|
+
}),
|
|
14
15
|
)
|
|
15
16
|
type NumberConfig = t.TypeOf<typeof NumberConfig>
|
|
16
17
|
|
|
17
18
|
const Number = t.exact(
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
19
|
+
t.intersection([
|
|
20
|
+
t.type({
|
|
21
|
+
type: t.literal(WidgetTypes.Number),
|
|
22
|
+
}),
|
|
23
|
+
t.partial({
|
|
24
|
+
fieldset: StringOrNull,
|
|
25
|
+
config: NumberConfig,
|
|
26
|
+
}),
|
|
27
|
+
]),
|
|
27
28
|
)
|
|
28
29
|
type Number = t.TypeOf<typeof Number>
|
|
29
30
|
|
|
30
|
-
export default Number
|
|
31
|
+
export default Number
|
|
@@ -1,30 +1,31 @@
|
|
|
1
|
-
import * as t from
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
import {
|
|
1
|
+
import * as t from "io-ts"
|
|
2
|
+
import { NumberFromString } from "io-ts-types/lib/NumberFromString"
|
|
3
|
+
|
|
4
|
+
import { StringOrNull } from "../../../validators"
|
|
5
|
+
import WidgetTypes from "../WidgetTypes"
|
|
5
6
|
|
|
6
7
|
const RangeConfig = t.exact(
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
8
|
+
t.partial({
|
|
9
|
+
label: StringOrNull,
|
|
10
|
+
placeholder: t.string,
|
|
11
|
+
min: t.union([t.number, NumberFromString]),
|
|
12
|
+
max: t.union([t.number, NumberFromString]),
|
|
13
|
+
step: t.union([t.number, NumberFromString]),
|
|
14
|
+
}),
|
|
14
15
|
)
|
|
15
16
|
type RangeConfig = t.TypeOf<typeof RangeConfig>
|
|
16
17
|
|
|
17
18
|
const Range = t.exact(
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
19
|
+
t.intersection([
|
|
20
|
+
t.type({
|
|
21
|
+
type: t.literal(WidgetTypes.Range),
|
|
22
|
+
}),
|
|
23
|
+
t.partial({
|
|
24
|
+
fieldset: StringOrNull,
|
|
25
|
+
config: RangeConfig,
|
|
26
|
+
}),
|
|
27
|
+
]),
|
|
27
28
|
)
|
|
28
29
|
type Range = t.TypeOf<typeof Range>
|
|
29
30
|
|
|
30
|
-
export default Range
|
|
31
|
+
export default Range
|