@pinuts/bsr-uikit-relaunch 0.2.71 → 0.2.73
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/hooks/useValidationMessage.d.ts.map +1 -1
- package/dist/hooks/useValidationMessage.js +1 -5
- package/dist/hooks/withFieldGroup.d.ts.map +1 -1
- package/dist/hooks/withFieldGroup.js +10 -5
- package/dist/index.js +1 -1
- package/dist/items/FieldsetWrapper/FieldsetWrapper.d.ts +1 -0
- package/dist/items/FieldsetWrapper/FieldsetWrapper.d.ts.map +1 -1
- package/dist/items/FieldsetWrapper/FieldsetWrapper.js +2 -1
- package/dist/items/eventWizardItems/EventPicker/EventPicker.d.ts +21 -0
- package/dist/items/eventWizardItems/EventPicker/EventPicker.d.ts.map +1 -1
- package/dist/items/eventWizardItems/EventPicker/EventPicker.js +22 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FieldsetWrapper.d.ts","sourceRoot":"","sources":["../../../src/items/FieldsetWrapper/FieldsetWrapper.jsx"],"names":[],"mappings":";AAQA;;;sBAiCC
|
|
1
|
+
{"version":3,"file":"FieldsetWrapper.d.ts","sourceRoot":"","sources":["../../../src/items/FieldsetWrapper/FieldsetWrapper.jsx"],"names":[],"mappings":";AAQA;;;sBAiCC;;;;;;;;;;;;kBAzC8B,OAAO;sBAChB,YAAY"}
|
|
@@ -46,7 +46,8 @@ FieldsetWrapper.propTypes = {
|
|
|
46
46
|
config: _propTypes.default.shape({
|
|
47
47
|
label: _propTypes.default.string.isRequired,
|
|
48
48
|
helpText: _propTypes.default.string,
|
|
49
|
-
headingLevel: _propTypes.default.string
|
|
49
|
+
headingLevel: _propTypes.default.string,
|
|
50
|
+
className: _propTypes.default.string
|
|
50
51
|
}).isRequired
|
|
51
52
|
};
|
|
52
53
|
(0, _formBuilder.registerComponent)('FieldsetWrapper', FieldsetWrapper);
|
|
@@ -6,6 +6,27 @@ declare namespace EventPicker {
|
|
|
6
6
|
namespace propTypes {
|
|
7
7
|
let config: PropTypes.Requireable<PropTypes.InferProps<{
|
|
8
8
|
className: PropTypes.Requireable<string>;
|
|
9
|
+
key: PropTypes.Validator<string>;
|
|
10
|
+
singleSelection: PropTypes.Requireable<boolean>;
|
|
11
|
+
singleSelectionCheckbox: PropTypes.Requireable<boolean>;
|
|
12
|
+
locationPicker: PropTypes.Requireable<boolean>;
|
|
13
|
+
inputProps: PropTypes.Requireable<PropTypes.InferProps<{
|
|
14
|
+
events: PropTypes.Requireable<PropTypes.InferProps<{
|
|
15
|
+
header: PropTypes.Requireable<string>;
|
|
16
|
+
infoLine1: PropTypes.Requireable<string>;
|
|
17
|
+
infoLine2: PropTypes.Requireable<string>;
|
|
18
|
+
subtext: PropTypes.Requireable<string>;
|
|
19
|
+
eventId: PropTypes.Requireable<string>;
|
|
20
|
+
event: PropTypes.Requireable<string>;
|
|
21
|
+
bookable: PropTypes.Requireable<boolean>;
|
|
22
|
+
}>[]>;
|
|
23
|
+
headline: PropTypes.Requireable<string>;
|
|
24
|
+
className: PropTypes.Requireable<string>;
|
|
25
|
+
infoText: PropTypes.Requireable<string>;
|
|
26
|
+
infoButton: PropTypes.Requireable<boolean>;
|
|
27
|
+
}>>;
|
|
28
|
+
errorMsgId: PropTypes.Requireable<string>;
|
|
29
|
+
name: PropTypes.Requireable<string>;
|
|
9
30
|
}>>;
|
|
10
31
|
}
|
|
11
32
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EventPicker.d.ts","sourceRoot":"","sources":["../../../../src/items/eventWizardItems/EventPicker/EventPicker.jsx"],"names":[],"mappings":";AAUA;;sBAgFC
|
|
1
|
+
{"version":3,"file":"EventPicker.d.ts","sourceRoot":"","sources":["../../../../src/items/eventWizardItems/EventPicker/EventPicker.jsx"],"names":[],"mappings":";AAUA;;sBAgFC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA1FiB,OAAO;2BACE,YAAY"}
|
|
@@ -117,7 +117,28 @@ const EventPicker = _ref => {
|
|
|
117
117
|
};
|
|
118
118
|
EventPicker.propTypes = {
|
|
119
119
|
config: PropTypes.shape({
|
|
120
|
-
className: PropTypes.string
|
|
120
|
+
className: PropTypes.string,
|
|
121
|
+
key: PropTypes.string.isRequired,
|
|
122
|
+
singleSelection: PropTypes.bool,
|
|
123
|
+
singleSelectionCheckbox: PropTypes.bool,
|
|
124
|
+
locationPicker: PropTypes.bool,
|
|
125
|
+
inputProps: PropTypes.shape({
|
|
126
|
+
events: PropTypes.arrayOf(PropTypes.shape({
|
|
127
|
+
header: PropTypes.string,
|
|
128
|
+
infoLine1: PropTypes.string,
|
|
129
|
+
infoLine2: PropTypes.string,
|
|
130
|
+
subtext: PropTypes.string,
|
|
131
|
+
eventId: PropTypes.string,
|
|
132
|
+
event: PropTypes.string,
|
|
133
|
+
bookable: PropTypes.bool
|
|
134
|
+
})),
|
|
135
|
+
headline: PropTypes.string,
|
|
136
|
+
className: PropTypes.string,
|
|
137
|
+
infoText: PropTypes.string,
|
|
138
|
+
infoButton: PropTypes.bool
|
|
139
|
+
}),
|
|
140
|
+
errorMsgId: PropTypes.string,
|
|
141
|
+
name: PropTypes.string
|
|
121
142
|
})
|
|
122
143
|
};
|
|
123
144
|
var _default = exports.default = EventPicker;
|