@spscommerce/ds-react 5.2.5 → 5.3.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/lib/index.cjs.js +119 -79
- package/lib/index.es.js +650 -584
- package/lib/list-toolbar/SpsListToolbarSearchInfo.d.ts +10 -0
- package/lib/list-toolbar/index.d.ts +1 -0
- package/package.json +9 -9
package/lib/index.es.js
CHANGED
|
@@ -81,7 +81,7 @@ var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof win
|
|
|
81
81
|
function commonjsRequire(path) {
|
|
82
82
|
throw new Error('Could not dynamically require "' + path + '". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.');
|
|
83
83
|
}
|
|
84
|
-
var propTypes$
|
|
84
|
+
var propTypes$1M = { exports: {} };
|
|
85
85
|
var ReactPropTypesSecret$1 = "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";
|
|
86
86
|
var ReactPropTypesSecret_1 = ReactPropTypesSecret$1;
|
|
87
87
|
var ReactPropTypesSecret = ReactPropTypesSecret_1;
|
|
@@ -129,32 +129,32 @@ var factoryWithThrowingShims = function() {
|
|
|
129
129
|
return ReactPropTypes;
|
|
130
130
|
};
|
|
131
131
|
{
|
|
132
|
-
propTypes$
|
|
132
|
+
propTypes$1M.exports = factoryWithThrowingShims();
|
|
133
133
|
}
|
|
134
134
|
function deprecated(type) {
|
|
135
135
|
return type;
|
|
136
136
|
}
|
|
137
137
|
function enumValue(e2) {
|
|
138
|
-
return propTypes$
|
|
138
|
+
return propTypes$1M.exports.oneOf(values$3(e2));
|
|
139
139
|
}
|
|
140
140
|
function fun() {
|
|
141
|
-
return propTypes$
|
|
141
|
+
return propTypes$1M.exports.func;
|
|
142
142
|
}
|
|
143
143
|
function impl() {
|
|
144
|
-
return propTypes$
|
|
144
|
+
return propTypes$1M.exports.object;
|
|
145
145
|
}
|
|
146
146
|
function ref() {
|
|
147
|
-
return propTypes$
|
|
147
|
+
return propTypes$1M.exports.object;
|
|
148
148
|
}
|
|
149
|
-
const nodeOrRenderFn = propTypes$
|
|
149
|
+
const nodeOrRenderFn = propTypes$1M.exports.oneOfType([propTypes$1M.exports.node, propTypes$1M.exports.func]);
|
|
150
150
|
const spsGlobalPropTypes = {
|
|
151
|
-
children: propTypes$
|
|
152
|
-
className: propTypes$
|
|
153
|
-
"data-testid": propTypes$
|
|
154
|
-
unsafelyReplaceClassName: propTypes$
|
|
151
|
+
children: propTypes$1M.exports.oneOfType([propTypes$1M.exports.arrayOf(propTypes$1M.exports.node), propTypes$1M.exports.node]),
|
|
152
|
+
className: propTypes$1M.exports.string,
|
|
153
|
+
"data-testid": propTypes$1M.exports.string,
|
|
154
|
+
unsafelyReplaceClassName: propTypes$1M.exports.string
|
|
155
155
|
};
|
|
156
156
|
const I18nContext = React.createContext(noI18nI18n);
|
|
157
|
-
const propsDoc$
|
|
157
|
+
const propsDoc$1H = {
|
|
158
158
|
disabled: "boolean",
|
|
159
159
|
href: "string",
|
|
160
160
|
icon: "SpsIcon",
|
|
@@ -163,13 +163,13 @@ const propsDoc$1G = {
|
|
|
163
163
|
spinningTitle: "string",
|
|
164
164
|
type: "ButtonType"
|
|
165
165
|
};
|
|
166
|
-
const propTypes$
|
|
167
|
-
disabled: propTypes$
|
|
168
|
-
href: propTypes$
|
|
166
|
+
const propTypes$1L = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
167
|
+
disabled: propTypes$1M.exports.bool,
|
|
168
|
+
href: propTypes$1M.exports.string,
|
|
169
169
|
icon: enumValue(SpsIcon),
|
|
170
170
|
kind: enumValue(ButtonKind),
|
|
171
|
-
spinning: propTypes$
|
|
172
|
-
spinningTitle: propTypes$
|
|
171
|
+
spinning: propTypes$1M.exports.bool,
|
|
172
|
+
spinningTitle: propTypes$1M.exports.string,
|
|
173
173
|
type: enumValue(ButtonType)
|
|
174
174
|
});
|
|
175
175
|
function SpsButton(props2) {
|
|
@@ -219,8 +219,8 @@ function SpsButton(props2) {
|
|
|
219
219
|
}), iconElement, children, spinner));
|
|
220
220
|
}
|
|
221
221
|
Object.assign(SpsButton, {
|
|
222
|
-
props: propsDoc$
|
|
223
|
-
propTypes: propTypes$
|
|
222
|
+
props: propsDoc$1H,
|
|
223
|
+
propTypes: propTypes$1L,
|
|
224
224
|
displayName: "SpsButton"
|
|
225
225
|
});
|
|
226
226
|
const spsFormProps = {
|
|
@@ -272,7 +272,7 @@ Object.assign(SpsForm, {
|
|
|
272
272
|
function contentOf(nodeOrRenderFn2) {
|
|
273
273
|
return typeof nodeOrRenderFn2 === "function" ? nodeOrRenderFn2() : nodeOrRenderFn2;
|
|
274
274
|
}
|
|
275
|
-
const propsDoc$
|
|
275
|
+
const propsDoc$1G = __spreadProps(__spreadValues({}, spsFormProps), {
|
|
276
276
|
controlsDisabled: "boolean",
|
|
277
277
|
footerLinks: "ReactNodeOrRenderFn",
|
|
278
278
|
formMeta: "SpsFormArrayMeta<any> | SpsFormGroupMeta<any>",
|
|
@@ -280,16 +280,16 @@ const propsDoc$1F = __spreadProps(__spreadValues({}, spsFormProps), {
|
|
|
280
280
|
onClear: "() => void",
|
|
281
281
|
onSubmit: "React.FormEventHandler"
|
|
282
282
|
});
|
|
283
|
-
const propTypes$
|
|
284
|
-
controlsDisabled: propTypes$
|
|
283
|
+
const propTypes$1K = __spreadProps(__spreadValues(__spreadValues({}, spsGlobalPropTypes), spsFormPropTypes), {
|
|
284
|
+
controlsDisabled: propTypes$1M.exports.bool,
|
|
285
285
|
footerLinks: nodeOrRenderFn,
|
|
286
286
|
formArray: impl(),
|
|
287
287
|
formGroup: impl(),
|
|
288
|
-
formMeta: propTypes$
|
|
288
|
+
formMeta: propTypes$1M.exports.oneOfType([
|
|
289
289
|
impl(),
|
|
290
290
|
impl()
|
|
291
291
|
]),
|
|
292
|
-
isOpen: propTypes$
|
|
292
|
+
isOpen: propTypes$1M.exports.bool,
|
|
293
293
|
onClear: fun(),
|
|
294
294
|
onSubmit: fun()
|
|
295
295
|
});
|
|
@@ -354,8 +354,8 @@ function SpsAdvancedSearch(props2) {
|
|
|
354
354
|
}, t2("design-system:advancedSearch.search"))))));
|
|
355
355
|
}
|
|
356
356
|
Object.assign(SpsAdvancedSearch, {
|
|
357
|
-
props: propsDoc$
|
|
358
|
-
propTypes: propTypes$
|
|
357
|
+
props: propsDoc$1G,
|
|
358
|
+
propTypes: propTypes$1K,
|
|
359
359
|
displayName: "SpsAdvancedSearch"
|
|
360
360
|
});
|
|
361
361
|
const SpsAdvancedSearchExamples = {
|
|
@@ -598,7 +598,7 @@ function useFormControlId(id2, formControl2) {
|
|
|
598
598
|
};
|
|
599
599
|
}
|
|
600
600
|
const spsFormComponentWrapperPropTypes = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
601
|
-
focusInputOnClick: propTypes$
|
|
601
|
+
focusInputOnClick: propTypes$1M.exports.bool,
|
|
602
602
|
formMeta: impl(),
|
|
603
603
|
formControl: impl(),
|
|
604
604
|
inputRef: ref()
|
|
@@ -748,15 +748,15 @@ var scrollIntoViewImport = /* @__PURE__ */ Object.freeze({
|
|
|
748
748
|
[Symbol.toStringTag]: "Module",
|
|
749
749
|
"default": scrollIntoView$1
|
|
750
750
|
});
|
|
751
|
-
const propsDoc$
|
|
751
|
+
const propsDoc$1F = {
|
|
752
752
|
alt: "string",
|
|
753
753
|
size: "SpinnerSize",
|
|
754
754
|
title: "string"
|
|
755
755
|
};
|
|
756
|
-
const propTypes$
|
|
757
|
-
alt: propTypes$
|
|
756
|
+
const propTypes$1J = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
757
|
+
alt: propTypes$1M.exports.string,
|
|
758
758
|
size: enumValue(SpinnerSize),
|
|
759
|
-
title: propTypes$
|
|
759
|
+
title: propTypes$1M.exports.string
|
|
760
760
|
});
|
|
761
761
|
function SpsSpinner(props2) {
|
|
762
762
|
const _a = props2, {
|
|
@@ -784,8 +784,8 @@ function SpsSpinner(props2) {
|
|
|
784
784
|
}, rest));
|
|
785
785
|
}
|
|
786
786
|
Object.assign(SpsSpinner, {
|
|
787
|
-
props: propsDoc$
|
|
788
|
-
propTypes: propTypes$
|
|
787
|
+
props: propsDoc$1F,
|
|
788
|
+
propTypes: propTypes$1J,
|
|
789
789
|
displayName: "SpsSpinner"
|
|
790
790
|
});
|
|
791
791
|
const NAVBAR_HEIGHT = 60;
|
|
@@ -973,48 +973,48 @@ const spsOptionListPassthroughProps = {
|
|
|
973
973
|
zeroState: "string"
|
|
974
974
|
},
|
|
975
975
|
propTypes: {
|
|
976
|
-
captionKey: propTypes$
|
|
977
|
-
comparisonKey: propTypes$
|
|
978
|
-
disabledOptions: propTypes$
|
|
979
|
-
options: propTypes$
|
|
980
|
-
propTypes$
|
|
981
|
-
propTypes$
|
|
976
|
+
captionKey: propTypes$1M.exports.string,
|
|
977
|
+
comparisonKey: propTypes$1M.exports.string,
|
|
978
|
+
disabledOptions: propTypes$1M.exports.arrayOf(propTypes$1M.exports.any),
|
|
979
|
+
options: propTypes$1M.exports.oneOfType([
|
|
980
|
+
propTypes$1M.exports.array,
|
|
981
|
+
propTypes$1M.exports.instanceOf(Promise),
|
|
982
982
|
fun()
|
|
983
983
|
]).isRequired,
|
|
984
|
-
tall: propTypes$
|
|
985
|
-
textKey: propTypes$
|
|
986
|
-
valueKey: propTypes$
|
|
987
|
-
zeroState: propTypes$
|
|
984
|
+
tall: propTypes$1M.exports.bool,
|
|
985
|
+
textKey: propTypes$1M.exports.string,
|
|
986
|
+
valueKey: propTypes$1M.exports.string,
|
|
987
|
+
zeroState: propTypes$1M.exports.string
|
|
988
988
|
}
|
|
989
989
|
};
|
|
990
990
|
const searchableOptionListProps = {
|
|
991
|
-
hideInlineSearch: propTypes$
|
|
991
|
+
hideInlineSearch: propTypes$1M.exports.bool,
|
|
992
992
|
onSearchChange: fun(),
|
|
993
|
-
search: propTypes$
|
|
994
|
-
searchDebounce: propTypes$
|
|
995
|
-
searchPlaceholder: propTypes$
|
|
993
|
+
search: propTypes$1M.exports.string,
|
|
994
|
+
searchDebounce: propTypes$1M.exports.number,
|
|
995
|
+
searchPlaceholder: propTypes$1M.exports.string,
|
|
996
996
|
searchInputRef: ref()
|
|
997
997
|
};
|
|
998
|
-
const propTypes$
|
|
998
|
+
const propTypes$1I = __spreadProps(__spreadValues(__spreadValues(__spreadValues({}, spsGlobalPropTypes), spsOptionListPassthroughProps.propTypes), searchableOptionListProps), {
|
|
999
999
|
attachTo: ref().isRequired,
|
|
1000
|
-
conformWidth: propTypes$
|
|
1001
|
-
id: propTypes$
|
|
1002
|
-
isOpen: propTypes$
|
|
1003
|
-
keepOpen: propTypes$
|
|
1000
|
+
conformWidth: propTypes$1M.exports.bool,
|
|
1001
|
+
id: propTypes$1M.exports.string.isRequired,
|
|
1002
|
+
isOpen: propTypes$1M.exports.bool,
|
|
1003
|
+
keepOpen: propTypes$1M.exports.bool,
|
|
1004
1004
|
keyDown: impl(),
|
|
1005
|
-
nullOption: propTypes$
|
|
1006
|
-
offsets: propTypes$
|
|
1005
|
+
nullOption: propTypes$1M.exports.string,
|
|
1006
|
+
offsets: propTypes$1M.exports.arrayOf(propTypes$1M.exports.number),
|
|
1007
1007
|
onOptionListChanged: fun(),
|
|
1008
1008
|
onOptionSelected: fun(),
|
|
1009
1009
|
onPositionFlip: fun(),
|
|
1010
1010
|
onSelfToggle: fun(),
|
|
1011
|
-
optionRole: propTypes$
|
|
1012
|
-
positionOverride: propTypes$
|
|
1013
|
-
selectedOption: propTypes$
|
|
1011
|
+
optionRole: propTypes$1M.exports.string,
|
|
1012
|
+
positionOverride: propTypes$1M.exports.arrayOf(enumValue(Position)),
|
|
1013
|
+
selectedOption: propTypes$1M.exports.any,
|
|
1014
1014
|
specialAction: fun(),
|
|
1015
|
-
ignoreWidthStyles: propTypes$
|
|
1016
|
-
loading: propTypes$
|
|
1017
|
-
filterByTextAndCaptionKey: propTypes$
|
|
1015
|
+
ignoreWidthStyles: propTypes$1M.exports.bool,
|
|
1016
|
+
loading: propTypes$1M.exports.bool,
|
|
1017
|
+
filterByTextAndCaptionKey: propTypes$1M.exports.bool
|
|
1018
1018
|
});
|
|
1019
1019
|
async function updateOptions(props2, searchState, searchStatePatch, setOptionList, setAnyOptionHasIcon, promiseRef) {
|
|
1020
1020
|
const options = typeof props2.options === "function" ? props2.options(searchState.value) : props2.options || [];
|
|
@@ -1621,7 +1621,7 @@ const SpsOptionList = React.forwardRef((props2, ref2) => {
|
|
|
1621
1621
|
}), /* @__PURE__ */ React.createElement("span", null, specialAction.label))));
|
|
1622
1622
|
});
|
|
1623
1623
|
Object.assign(SpsOptionList, {
|
|
1624
|
-
propTypes: propTypes$
|
|
1624
|
+
propTypes: propTypes$1I,
|
|
1625
1625
|
displayName: "SpsOptionList"
|
|
1626
1626
|
});
|
|
1627
1627
|
function selectChildren(children = [], groups = []) {
|
|
@@ -1710,7 +1710,7 @@ function useInputPopup(rootRef, popupRef) {
|
|
|
1710
1710
|
doHidePopup
|
|
1711
1711
|
};
|
|
1712
1712
|
}
|
|
1713
|
-
const propsDoc$
|
|
1713
|
+
const propsDoc$1E = {
|
|
1714
1714
|
debounce: "number",
|
|
1715
1715
|
disabled: "boolean",
|
|
1716
1716
|
formMeta: "SpsFormFieldMeta<string>",
|
|
@@ -1729,23 +1729,23 @@ const propsDoc$1D = {
|
|
|
1729
1729
|
zeroState: "string",
|
|
1730
1730
|
loading: "boolean"
|
|
1731
1731
|
};
|
|
1732
|
-
const propTypes$
|
|
1733
|
-
debounce: propTypes$
|
|
1734
|
-
disabled: propTypes$
|
|
1732
|
+
const propTypes$1H = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
1733
|
+
debounce: propTypes$1M.exports.number,
|
|
1734
|
+
disabled: propTypes$1M.exports.bool,
|
|
1735
1735
|
formControl: impl(),
|
|
1736
1736
|
formMeta: impl(),
|
|
1737
1737
|
icon: enumValue(SpsIcon),
|
|
1738
1738
|
onChange: fun(),
|
|
1739
|
-
placeholder: propTypes$
|
|
1740
|
-
suggestions: propTypes$
|
|
1741
|
-
propTypes$
|
|
1742
|
-
propTypes$
|
|
1739
|
+
placeholder: propTypes$1M.exports.string,
|
|
1740
|
+
suggestions: propTypes$1M.exports.oneOfType([
|
|
1741
|
+
propTypes$1M.exports.arrayOf(propTypes$1M.exports.string),
|
|
1742
|
+
propTypes$1M.exports.instanceOf(Promise),
|
|
1743
1743
|
fun()
|
|
1744
1744
|
]).isRequired,
|
|
1745
|
-
tallOptionList: propTypes$
|
|
1746
|
-
value: propTypes$
|
|
1747
|
-
zeroState: propTypes$
|
|
1748
|
-
loading: propTypes$
|
|
1745
|
+
tallOptionList: propTypes$1M.exports.bool,
|
|
1746
|
+
value: propTypes$1M.exports.string,
|
|
1747
|
+
zeroState: propTypes$1M.exports.string,
|
|
1748
|
+
loading: propTypes$1M.exports.bool
|
|
1749
1749
|
});
|
|
1750
1750
|
function SpsAutocomplete(_a) {
|
|
1751
1751
|
var _b = _a, {
|
|
@@ -1892,8 +1892,8 @@ function SpsAutocomplete(_a) {
|
|
|
1892
1892
|
}));
|
|
1893
1893
|
}
|
|
1894
1894
|
Object.assign(SpsAutocomplete, {
|
|
1895
|
-
props: propsDoc$
|
|
1896
|
-
propTypes: propTypes$
|
|
1895
|
+
props: propsDoc$1E,
|
|
1896
|
+
propTypes: propTypes$1H,
|
|
1897
1897
|
displayName: "SpsAutocomplete"
|
|
1898
1898
|
});
|
|
1899
1899
|
const SpsAutocompleteExamples = {
|
|
@@ -2016,7 +2016,7 @@ const SpsAutocompleteExamples = {
|
|
|
2016
2016
|
}
|
|
2017
2017
|
}
|
|
2018
2018
|
};
|
|
2019
|
-
const propsDoc$
|
|
2019
|
+
const propsDoc$1D = {
|
|
2020
2020
|
alignLeft: "boolean",
|
|
2021
2021
|
disabled: "boolean",
|
|
2022
2022
|
icon: "SpsIcon",
|
|
@@ -2030,19 +2030,19 @@ const propsDoc$1C = {
|
|
|
2030
2030
|
onClose: "() => void",
|
|
2031
2031
|
loading: "boolean"
|
|
2032
2032
|
};
|
|
2033
|
-
const propTypes$
|
|
2034
|
-
alignLeft: propTypes$
|
|
2035
|
-
disabled: propTypes$
|
|
2033
|
+
const propTypes$1G = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
2034
|
+
alignLeft: propTypes$1M.exports.bool,
|
|
2035
|
+
disabled: propTypes$1M.exports.bool,
|
|
2036
2036
|
icon: enumValue(SpsIcon),
|
|
2037
2037
|
kind: enumValue(DropdownKind),
|
|
2038
|
-
label: propTypes$
|
|
2039
|
-
options: propTypes$
|
|
2040
|
-
spinning: propTypes$
|
|
2041
|
-
spinningTitle: propTypes$
|
|
2042
|
-
tallOptionList: propTypes$
|
|
2038
|
+
label: propTypes$1M.exports.string,
|
|
2039
|
+
options: propTypes$1M.exports.arrayOf(propTypes$1M.exports.oneOfType([propTypes$1M.exports.func, propTypes$1M.exports.any])).isRequired,
|
|
2040
|
+
spinning: propTypes$1M.exports.bool,
|
|
2041
|
+
spinningTitle: propTypes$1M.exports.string,
|
|
2042
|
+
tallOptionList: propTypes$1M.exports.bool,
|
|
2043
2043
|
onOpen: fun(),
|
|
2044
2044
|
onClose: fun(),
|
|
2045
|
-
loading: propTypes$
|
|
2045
|
+
loading: propTypes$1M.exports.bool
|
|
2046
2046
|
});
|
|
2047
2047
|
function SpsDropdown(props2) {
|
|
2048
2048
|
const _a = props2, {
|
|
@@ -2199,12 +2199,12 @@ function SpsDropdown(props2) {
|
|
|
2199
2199
|
}, spinningTitle || t2("design-system:button.spinningTitle")))));
|
|
2200
2200
|
}
|
|
2201
2201
|
Object.assign(SpsDropdown, {
|
|
2202
|
-
props: propsDoc$
|
|
2203
|
-
propTypes: propTypes$
|
|
2202
|
+
props: propsDoc$1D,
|
|
2203
|
+
propTypes: propTypes$1G,
|
|
2204
2204
|
displayName: "SpsDropdown"
|
|
2205
2205
|
});
|
|
2206
|
-
const propsDoc$
|
|
2207
|
-
const propTypes$
|
|
2206
|
+
const propsDoc$1C = {};
|
|
2207
|
+
const propTypes$1F = __spreadValues({}, spsGlobalPropTypes);
|
|
2208
2208
|
function SpsButtonGroup(props2) {
|
|
2209
2209
|
const _a = props2, {
|
|
2210
2210
|
children,
|
|
@@ -2235,8 +2235,8 @@ function SpsButtonGroup(props2) {
|
|
|
2235
2235
|
}), others.length > 0 && others);
|
|
2236
2236
|
}
|
|
2237
2237
|
Object.assign(SpsButtonGroup, {
|
|
2238
|
-
props: propsDoc$
|
|
2239
|
-
propTypes: propTypes$
|
|
2238
|
+
props: propsDoc$1C,
|
|
2239
|
+
propTypes: propTypes$1F,
|
|
2240
2240
|
displayName: "SpsButtonGroup"
|
|
2241
2241
|
});
|
|
2242
2242
|
const SpsButtonExamples = {
|
|
@@ -4968,8 +4968,8 @@ function SpsTabPanel(_c) {
|
|
|
4968
4968
|
className: "sps-card__body"
|
|
4969
4969
|
}), state.selectedItem ? state.selectedItem.props.children : null);
|
|
4970
4970
|
}
|
|
4971
|
-
const propsDoc$
|
|
4972
|
-
const propTypes$
|
|
4971
|
+
const propsDoc$1B = {};
|
|
4972
|
+
const propTypes$1E = {};
|
|
4973
4973
|
function SpsTabsV2(props2) {
|
|
4974
4974
|
const state = useTabListState(props2);
|
|
4975
4975
|
const ref2 = React.useRef();
|
|
@@ -4987,12 +4987,12 @@ function SpsTabsV2(props2) {
|
|
|
4987
4987
|
}));
|
|
4988
4988
|
}
|
|
4989
4989
|
Object.assign(SpsTabsV2, {
|
|
4990
|
-
props: propsDoc$
|
|
4991
|
-
propTypes: propTypes$
|
|
4990
|
+
props: propsDoc$1B,
|
|
4991
|
+
propTypes: propTypes$1E,
|
|
4992
4992
|
displayName: "SpsTabsV2"
|
|
4993
4993
|
});
|
|
4994
|
-
const propsDoc$
|
|
4995
|
-
const propTypes$
|
|
4994
|
+
const propsDoc$1A = {};
|
|
4995
|
+
const propTypes$1D = {};
|
|
4996
4996
|
function SpsCardV2Footer(_e) {
|
|
4997
4997
|
var _f = _e, {
|
|
4998
4998
|
children,
|
|
@@ -5006,12 +5006,12 @@ function SpsCardV2Footer(_e) {
|
|
|
5006
5006
|
}, rest), children);
|
|
5007
5007
|
}
|
|
5008
5008
|
Object.assign(SpsCardV2Footer, {
|
|
5009
|
-
props: propsDoc$
|
|
5010
|
-
propTypes: propTypes$
|
|
5009
|
+
props: propsDoc$1A,
|
|
5010
|
+
propTypes: propTypes$1D,
|
|
5011
5011
|
displayName: "SpsCardV2Footer"
|
|
5012
5012
|
});
|
|
5013
|
-
const propsDoc$
|
|
5014
|
-
const propTypes$
|
|
5013
|
+
const propsDoc$1z = {};
|
|
5014
|
+
const propTypes$1C = {};
|
|
5015
5015
|
function SpsCardV2Header(_g) {
|
|
5016
5016
|
var _h = _g, {
|
|
5017
5017
|
children,
|
|
@@ -5025,12 +5025,12 @@ function SpsCardV2Header(_g) {
|
|
|
5025
5025
|
}, rest), children);
|
|
5026
5026
|
}
|
|
5027
5027
|
Object.assign(SpsCardV2Header, {
|
|
5028
|
-
props: propsDoc$
|
|
5029
|
-
propTypes: propTypes$
|
|
5028
|
+
props: propsDoc$1z,
|
|
5029
|
+
propTypes: propTypes$1C,
|
|
5030
5030
|
displayName: "SpsCardV2Header"
|
|
5031
5031
|
});
|
|
5032
|
-
const propsDoc$
|
|
5033
|
-
const propTypes$
|
|
5032
|
+
const propsDoc$1y = {};
|
|
5033
|
+
const propTypes$1B = {};
|
|
5034
5034
|
function SpsCardV2(_i) {
|
|
5035
5035
|
var _j = _i, {
|
|
5036
5036
|
children,
|
|
@@ -5056,12 +5056,12 @@ function SpsCardV2(_i) {
|
|
|
5056
5056
|
}, bodyContent), footer);
|
|
5057
5057
|
}
|
|
5058
5058
|
Object.assign(SpsCardV2, {
|
|
5059
|
-
props: propsDoc$
|
|
5060
|
-
propTypes: propTypes$
|
|
5059
|
+
props: propsDoc$1y,
|
|
5060
|
+
propTypes: propTypes$1B,
|
|
5061
5061
|
displayName: "SpsCardV2"
|
|
5062
5062
|
});
|
|
5063
|
-
const propsDoc$
|
|
5064
|
-
const propTypes$
|
|
5063
|
+
const propsDoc$1x = {};
|
|
5064
|
+
const propTypes$1A = {};
|
|
5065
5065
|
function SpsCardV2Title(_k) {
|
|
5066
5066
|
var _l = _k, {
|
|
5067
5067
|
children,
|
|
@@ -5075,8 +5075,8 @@ function SpsCardV2Title(_k) {
|
|
|
5075
5075
|
}, rest), children);
|
|
5076
5076
|
}
|
|
5077
5077
|
Object.assign(SpsCardV2Title, {
|
|
5078
|
-
props: propsDoc$
|
|
5079
|
-
propTypes: propTypes$
|
|
5078
|
+
props: propsDoc$1x,
|
|
5079
|
+
propTypes: propTypes$1A,
|
|
5080
5080
|
displayName: "SpsCardV2Title"
|
|
5081
5081
|
});
|
|
5082
5082
|
const SpsCardExamples = {
|
|
@@ -5384,7 +5384,7 @@ const SpsCardExamples = {
|
|
|
5384
5384
|
}
|
|
5385
5385
|
}
|
|
5386
5386
|
};
|
|
5387
|
-
const propsDoc$
|
|
5387
|
+
const propsDoc$1w = {
|
|
5388
5388
|
checked: "boolean",
|
|
5389
5389
|
disabled: "boolean",
|
|
5390
5390
|
formMeta: "SpsFormFieldMeta<boolean>",
|
|
@@ -5393,14 +5393,14 @@ const propsDoc$1v = {
|
|
|
5393
5393
|
label: "string",
|
|
5394
5394
|
onChange: "ChangeEventHandler"
|
|
5395
5395
|
};
|
|
5396
|
-
const propTypes$
|
|
5397
|
-
checked: propTypes$
|
|
5398
|
-
disabled: propTypes$
|
|
5396
|
+
const propTypes$1z = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
5397
|
+
checked: propTypes$1M.exports.bool,
|
|
5398
|
+
disabled: propTypes$1M.exports.bool,
|
|
5399
5399
|
formControl: impl(),
|
|
5400
5400
|
formMeta: impl(),
|
|
5401
|
-
indeterminate: propTypes$
|
|
5402
|
-
inline: propTypes$
|
|
5403
|
-
label: propTypes$
|
|
5401
|
+
indeterminate: propTypes$1M.exports.bool,
|
|
5402
|
+
inline: propTypes$1M.exports.bool,
|
|
5403
|
+
label: propTypes$1M.exports.string,
|
|
5404
5404
|
onChange: fun()
|
|
5405
5405
|
});
|
|
5406
5406
|
function SpsCheckbox(_m) {
|
|
@@ -5475,8 +5475,8 @@ function SpsCheckbox(_m) {
|
|
|
5475
5475
|
}, label || ""));
|
|
5476
5476
|
}
|
|
5477
5477
|
Object.assign(SpsCheckbox, {
|
|
5478
|
-
props: propsDoc$
|
|
5479
|
-
propTypes: propTypes$
|
|
5478
|
+
props: propsDoc$1w,
|
|
5479
|
+
propTypes: propTypes$1z,
|
|
5480
5480
|
displayName: "SpsCheckbox"
|
|
5481
5481
|
});
|
|
5482
5482
|
const SpsCheckboxExamples = {
|
|
@@ -5604,16 +5604,16 @@ const SpsCheckboxExamples = {
|
|
|
5604
5604
|
}
|
|
5605
5605
|
}
|
|
5606
5606
|
};
|
|
5607
|
-
const propsDoc$
|
|
5607
|
+
const propsDoc$1v = {
|
|
5608
5608
|
disabled: "boolean",
|
|
5609
5609
|
href: "string",
|
|
5610
5610
|
kind: "ClickableTagKind",
|
|
5611
5611
|
onAdd: "() => void",
|
|
5612
5612
|
onRemove: "() => void"
|
|
5613
5613
|
};
|
|
5614
|
-
const propTypes$
|
|
5615
|
-
disabled: propTypes$
|
|
5616
|
-
href: propTypes$
|
|
5614
|
+
const propTypes$1y = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
5615
|
+
disabled: propTypes$1M.exports.bool,
|
|
5616
|
+
href: propTypes$1M.exports.string,
|
|
5617
5617
|
kind: enumValue(ClickableTagKind),
|
|
5618
5618
|
onAdd: fun(),
|
|
5619
5619
|
onRemove: fun()
|
|
@@ -5684,8 +5684,8 @@ function SpsClickableTag(props2) {
|
|
|
5684
5684
|
})));
|
|
5685
5685
|
}
|
|
5686
5686
|
Object.assign(SpsClickableTag, {
|
|
5687
|
-
props: propsDoc$
|
|
5688
|
-
propTypes: propTypes$
|
|
5687
|
+
props: propsDoc$1v,
|
|
5688
|
+
propTypes: propTypes$1y,
|
|
5689
5689
|
displayName: "SpsClickableTag"
|
|
5690
5690
|
});
|
|
5691
5691
|
const SpsClickableTagExamples = {
|
|
@@ -13913,15 +13913,15 @@ var ConnectedDraggable = connect(makeMapStateToProps$1, mapDispatchToProps$1, nu
|
|
|
13913
13913
|
areStatePropsEqual: isStrictEqual
|
|
13914
13914
|
})(Draggable);
|
|
13915
13915
|
ConnectedDraggable.defaultProps = defaultProps$1;
|
|
13916
|
-
const propsDoc$
|
|
13916
|
+
const propsDoc$1u = {
|
|
13917
13917
|
content: "ReactNodeLike",
|
|
13918
13918
|
icon: "SpsIcon",
|
|
13919
13919
|
title: "string"
|
|
13920
13920
|
};
|
|
13921
|
-
const propTypes$
|
|
13922
|
-
content: propTypes$
|
|
13921
|
+
const propTypes$1x = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
13922
|
+
content: propTypes$1M.exports.node,
|
|
13923
13923
|
icon: enumValue(SpsIcon),
|
|
13924
|
-
title: propTypes$
|
|
13924
|
+
title: propTypes$1M.exports.string
|
|
13925
13925
|
});
|
|
13926
13926
|
function SpsCardHeader(props2) {
|
|
13927
13927
|
const _a = props2, {
|
|
@@ -13953,15 +13953,15 @@ function SpsCardHeader(props2) {
|
|
|
13953
13953
|
}, content));
|
|
13954
13954
|
}
|
|
13955
13955
|
Object.assign(SpsCardHeader, {
|
|
13956
|
-
props: propsDoc$
|
|
13957
|
-
propTypes: propTypes$
|
|
13956
|
+
props: propsDoc$1u,
|
|
13957
|
+
propTypes: propTypes$1x,
|
|
13958
13958
|
displayName: "SpsCardHeader"
|
|
13959
13959
|
});
|
|
13960
|
-
const propsDoc$
|
|
13960
|
+
const propsDoc$1t = {
|
|
13961
13961
|
icon: "SpsIcon",
|
|
13962
13962
|
kind: "TagKind"
|
|
13963
13963
|
};
|
|
13964
|
-
const propTypes$
|
|
13964
|
+
const propTypes$1w = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
13965
13965
|
icon: enumValue(SpsIcon),
|
|
13966
13966
|
kind: enumValue(TagKind)
|
|
13967
13967
|
});
|
|
@@ -13994,11 +13994,11 @@ function SpsTag(props2) {
|
|
|
13994
13994
|
}), children);
|
|
13995
13995
|
}
|
|
13996
13996
|
Object.assign(SpsTag, {
|
|
13997
|
-
props: propsDoc$
|
|
13998
|
-
propTypes: propTypes$
|
|
13997
|
+
props: propsDoc$1t,
|
|
13998
|
+
propTypes: propTypes$1w,
|
|
13999
13999
|
displayName: "SpsTag"
|
|
14000
14000
|
});
|
|
14001
|
-
const propsDoc$
|
|
14001
|
+
const propsDoc$1s = {
|
|
14002
14002
|
activateTab: "Function",
|
|
14003
14003
|
active: "boolean",
|
|
14004
14004
|
icon: "SpsIcon",
|
|
@@ -14008,13 +14008,13 @@ const propsDoc$1r = {
|
|
|
14008
14008
|
tagKind: "TagKind",
|
|
14009
14009
|
tagIcon: "SpsIcon"
|
|
14010
14010
|
};
|
|
14011
|
-
const propTypes$
|
|
14012
|
-
activateTab: propTypes$
|
|
14013
|
-
active: propTypes$
|
|
14011
|
+
const propTypes$1v = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
14012
|
+
activateTab: propTypes$1M.exports.func,
|
|
14013
|
+
active: propTypes$1M.exports.bool,
|
|
14014
14014
|
icon: enumValue(SpsIcon),
|
|
14015
|
-
label: propTypes$
|
|
14016
|
-
index: propTypes$
|
|
14017
|
-
tag: propTypes$
|
|
14015
|
+
label: propTypes$1M.exports.string,
|
|
14016
|
+
index: propTypes$1M.exports.number,
|
|
14017
|
+
tag: propTypes$1M.exports.string,
|
|
14018
14018
|
tagKind: enumValue(TagKind),
|
|
14019
14019
|
tagIcon: enumValue(SpsIcon)
|
|
14020
14020
|
});
|
|
@@ -14077,8 +14077,8 @@ function SpsCardTabbedPane(props2) {
|
|
|
14077
14077
|
}, tag));
|
|
14078
14078
|
}
|
|
14079
14079
|
Object.assign(SpsCardTabbedPane, {
|
|
14080
|
-
props: propsDoc$
|
|
14081
|
-
propTypes: propTypes$
|
|
14080
|
+
props: propsDoc$1s,
|
|
14081
|
+
propTypes: propTypes$1v,
|
|
14082
14082
|
displayName: "SpsCardTabbedPane"
|
|
14083
14083
|
});
|
|
14084
14084
|
function useTab(children, activeTab, isTabbedCard) {
|
|
@@ -14120,19 +14120,19 @@ function useTab(children, activeTab, isTabbedCard) {
|
|
|
14120
14120
|
}, [activeTab, children]);
|
|
14121
14121
|
return [currentlyActiveTab, activateTab];
|
|
14122
14122
|
}
|
|
14123
|
-
const propsDoc$
|
|
14123
|
+
const propsDoc$1r = {
|
|
14124
14124
|
activeTab: "string",
|
|
14125
14125
|
footer: "ReactNodeOrRenderFn",
|
|
14126
14126
|
headerContent: "ReactNodeOrRenderFn",
|
|
14127
14127
|
headerIcon: "SpsIcon",
|
|
14128
14128
|
headerTitle: "string"
|
|
14129
14129
|
};
|
|
14130
|
-
const propTypes$
|
|
14131
|
-
activeTab: propTypes$
|
|
14130
|
+
const propTypes$1u = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
14131
|
+
activeTab: propTypes$1M.exports.string,
|
|
14132
14132
|
footer: nodeOrRenderFn,
|
|
14133
14133
|
headerContent: nodeOrRenderFn,
|
|
14134
14134
|
headerIcon: enumValue(SpsIcon),
|
|
14135
|
-
headerTitle: propTypes$
|
|
14135
|
+
headerTitle: propTypes$1M.exports.string
|
|
14136
14136
|
});
|
|
14137
14137
|
function SpsCard(props2) {
|
|
14138
14138
|
React.useEffect(() => {
|
|
@@ -14199,11 +14199,11 @@ function SpsCard(props2) {
|
|
|
14199
14199
|
}, contentOf(footer)));
|
|
14200
14200
|
}
|
|
14201
14201
|
Object.assign(SpsCard, {
|
|
14202
|
-
props: propsDoc$
|
|
14203
|
-
propTypes: propTypes$
|
|
14202
|
+
props: propsDoc$1r,
|
|
14203
|
+
propTypes: propTypes$1u,
|
|
14204
14204
|
displayName: "SpsCard"
|
|
14205
14205
|
});
|
|
14206
|
-
const propsDoc$
|
|
14206
|
+
const propsDoc$1q = {
|
|
14207
14207
|
index: "number",
|
|
14208
14208
|
key: "string",
|
|
14209
14209
|
columnId: "string",
|
|
@@ -14212,14 +14212,14 @@ const propsDoc$1p = {
|
|
|
14212
14212
|
onDelete: "(columnValue: string) => void",
|
|
14213
14213
|
mandatory: "boolean"
|
|
14214
14214
|
};
|
|
14215
|
-
const propTypes$
|
|
14216
|
-
index: propTypes$
|
|
14217
|
-
key: propTypes$
|
|
14218
|
-
columnId: propTypes$
|
|
14219
|
-
name: propTypes$
|
|
14220
|
-
value: propTypes$
|
|
14215
|
+
const propTypes$1t = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
14216
|
+
index: propTypes$1M.exports.number,
|
|
14217
|
+
key: propTypes$1M.exports.string,
|
|
14218
|
+
columnId: propTypes$1M.exports.string,
|
|
14219
|
+
name: propTypes$1M.exports.string,
|
|
14220
|
+
value: propTypes$1M.exports.string,
|
|
14221
14221
|
onDelete: fun(),
|
|
14222
|
-
mandatory: propTypes$
|
|
14222
|
+
mandatory: propTypes$1M.exports.bool
|
|
14223
14223
|
});
|
|
14224
14224
|
function SpsColumnChooserColumn(props2) {
|
|
14225
14225
|
const _a = props2, {
|
|
@@ -14275,20 +14275,20 @@ function SpsColumnChooserColumn(props2) {
|
|
|
14275
14275
|
})))));
|
|
14276
14276
|
}
|
|
14277
14277
|
Object.assign(SpsColumnChooserColumn, {
|
|
14278
|
-
props: propsDoc$
|
|
14279
|
-
propTypes: propTypes$
|
|
14278
|
+
props: propsDoc$1q,
|
|
14279
|
+
propTypes: propTypes$1t,
|
|
14280
14280
|
displayName: "SpsColumnChooserColumn"
|
|
14281
14281
|
});
|
|
14282
|
-
const propsDoc$
|
|
14282
|
+
const propsDoc$1p = {
|
|
14283
14283
|
maxSelectedColumns: "number",
|
|
14284
14284
|
unselectedColumns: "ColumnProps[]",
|
|
14285
14285
|
selectedColumns: "ColumnProps[]",
|
|
14286
14286
|
onApplyChanges: "(selectedColumns: ColumnProps[]) => void"
|
|
14287
14287
|
};
|
|
14288
|
-
const propTypes$
|
|
14289
|
-
maxSelectedColumns: propTypes$
|
|
14290
|
-
unselectedColumns: propTypes$
|
|
14291
|
-
selectedColumns: propTypes$
|
|
14288
|
+
const propTypes$1s = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
14289
|
+
maxSelectedColumns: propTypes$1M.exports.number,
|
|
14290
|
+
unselectedColumns: propTypes$1M.exports.array,
|
|
14291
|
+
selectedColumns: propTypes$1M.exports.array,
|
|
14292
14292
|
onApplyChanges: fun()
|
|
14293
14293
|
});
|
|
14294
14294
|
function SpsColumnChooser(props2) {
|
|
@@ -14428,8 +14428,8 @@ function SpsColumnChooser(props2) {
|
|
|
14428
14428
|
})), provided.placeholder)))));
|
|
14429
14429
|
}
|
|
14430
14430
|
Object.assign(SpsColumnChooser, {
|
|
14431
|
-
props: propsDoc$
|
|
14432
|
-
propTypes: propTypes$
|
|
14431
|
+
props: propsDoc$1p,
|
|
14432
|
+
propTypes: propTypes$1s,
|
|
14433
14433
|
displayName: "SpsColumnChooser"
|
|
14434
14434
|
});
|
|
14435
14435
|
const SpsColumnChooserExamples = {
|
|
@@ -14461,11 +14461,11 @@ const SpsColumnChooserExamples = {
|
|
|
14461
14461
|
}
|
|
14462
14462
|
}
|
|
14463
14463
|
};
|
|
14464
|
-
const propsDoc$
|
|
14464
|
+
const propsDoc$1o = {
|
|
14465
14465
|
icon: { type: "SpsIcon", required: true },
|
|
14466
14466
|
size: "SpsIconSize"
|
|
14467
14467
|
};
|
|
14468
|
-
const propTypes$
|
|
14468
|
+
const propTypes$1r = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
14469
14469
|
icon: enumValue(SpsIcon).isRequired,
|
|
14470
14470
|
size: enumValue(SpsIconSize)
|
|
14471
14471
|
});
|
|
@@ -14491,28 +14491,28 @@ function SpsI(props2) {
|
|
|
14491
14491
|
}, rest));
|
|
14492
14492
|
}
|
|
14493
14493
|
Object.assign(SpsI, {
|
|
14494
|
-
props: propsDoc$
|
|
14495
|
-
propTypes: propTypes$
|
|
14494
|
+
props: propsDoc$1o,
|
|
14495
|
+
propTypes: propTypes$1r,
|
|
14496
14496
|
displayName: "SpsI"
|
|
14497
14497
|
});
|
|
14498
14498
|
Object.assign(SpsI, {
|
|
14499
|
-
props: propsDoc$
|
|
14500
|
-
propTypes: propTypes$
|
|
14499
|
+
props: propsDoc$1o,
|
|
14500
|
+
propTypes: propTypes$1r,
|
|
14501
14501
|
displayName: "SpsI"
|
|
14502
14502
|
});
|
|
14503
|
-
const propsDoc$
|
|
14503
|
+
const propsDoc$1n = {
|
|
14504
14504
|
borderless: "boolean",
|
|
14505
14505
|
lean: "boolean",
|
|
14506
14506
|
leaner: { type: "boolean", deprecated: true },
|
|
14507
14507
|
widthPx: "number",
|
|
14508
14508
|
widthRem: "number"
|
|
14509
14509
|
};
|
|
14510
|
-
const propTypes$
|
|
14511
|
-
borderless: propTypes$
|
|
14512
|
-
lean: propTypes$
|
|
14513
|
-
leaner: propTypes$
|
|
14514
|
-
widthPx: propTypes$
|
|
14515
|
-
widthRem: propTypes$
|
|
14510
|
+
const propTypes$1q = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
14511
|
+
borderless: propTypes$1M.exports.bool,
|
|
14512
|
+
lean: propTypes$1M.exports.bool,
|
|
14513
|
+
leaner: propTypes$1M.exports.bool,
|
|
14514
|
+
widthPx: propTypes$1M.exports.number,
|
|
14515
|
+
widthRem: propTypes$1M.exports.number
|
|
14516
14516
|
});
|
|
14517
14517
|
function SpsContentRowCol(props2) {
|
|
14518
14518
|
const _a = props2, {
|
|
@@ -14557,12 +14557,12 @@ function SpsContentRowCol(props2) {
|
|
|
14557
14557
|
}), children);
|
|
14558
14558
|
}
|
|
14559
14559
|
Object.assign(SpsContentRowCol, {
|
|
14560
|
-
props: propsDoc$
|
|
14561
|
-
propTypes: propTypes$
|
|
14560
|
+
props: propsDoc$1n,
|
|
14561
|
+
propTypes: propTypes$1q,
|
|
14562
14562
|
displayName: "SpsContentRowCol"
|
|
14563
14563
|
});
|
|
14564
|
-
const propsDoc$
|
|
14565
|
-
const propTypes$
|
|
14564
|
+
const propsDoc$1m = {};
|
|
14565
|
+
const propTypes$1p = __spreadValues({}, spsGlobalPropTypes);
|
|
14566
14566
|
function SpsContentRowExpansion(props2) {
|
|
14567
14567
|
const _a = props2, {
|
|
14568
14568
|
children,
|
|
@@ -14583,11 +14583,11 @@ function SpsContentRowExpansion(props2) {
|
|
|
14583
14583
|
}), children);
|
|
14584
14584
|
}
|
|
14585
14585
|
Object.assign(SpsContentRowExpansion, {
|
|
14586
|
-
props: propsDoc$
|
|
14587
|
-
propTypes: propTypes$
|
|
14586
|
+
props: propsDoc$1m,
|
|
14587
|
+
propTypes: propTypes$1p,
|
|
14588
14588
|
displayName: "SpsContentRowExpansion"
|
|
14589
14589
|
});
|
|
14590
|
-
const propsDoc$
|
|
14590
|
+
const propsDoc$1l = {
|
|
14591
14591
|
alternateLayout: "boolean",
|
|
14592
14592
|
initiallyExpanded: "boolean",
|
|
14593
14593
|
cardSpacing: "boolean",
|
|
@@ -14600,18 +14600,18 @@ const propsDoc$1k = {
|
|
|
14600
14600
|
selectable: "boolean",
|
|
14601
14601
|
selected: "boolean"
|
|
14602
14602
|
};
|
|
14603
|
-
const propTypes$
|
|
14604
|
-
alternateLayout: propTypes$
|
|
14605
|
-
cardSpacing: propTypes$
|
|
14606
|
-
expanded: propTypes$
|
|
14607
|
-
initiallyExpanded: propTypes$
|
|
14603
|
+
const propTypes$1o = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
14604
|
+
alternateLayout: propTypes$1M.exports.bool,
|
|
14605
|
+
cardSpacing: propTypes$1M.exports.bool,
|
|
14606
|
+
expanded: propTypes$1M.exports.bool,
|
|
14607
|
+
initiallyExpanded: propTypes$1M.exports.bool,
|
|
14608
14608
|
onBeforeCollapsed: fun(),
|
|
14609
14609
|
onBeforeExpanded: fun(),
|
|
14610
14610
|
onSelectionChange: fun(),
|
|
14611
14611
|
onCollapsed: fun(),
|
|
14612
14612
|
onExpanded: fun(),
|
|
14613
|
-
selectable: propTypes$
|
|
14614
|
-
selected: propTypes$
|
|
14613
|
+
selectable: propTypes$1M.exports.bool,
|
|
14614
|
+
selected: propTypes$1M.exports.bool
|
|
14615
14615
|
});
|
|
14616
14616
|
function SpsContentRow(props2) {
|
|
14617
14617
|
const _a = props2, {
|
|
@@ -14692,8 +14692,8 @@ function SpsContentRow(props2) {
|
|
|
14692
14692
|
}, /* @__PURE__ */ React.createElement("section", null, ContentRowCheckBox()), /* @__PURE__ */ React.createElement("section", null, ExpandoThingy())), columns), expansion);
|
|
14693
14693
|
}
|
|
14694
14694
|
Object.assign(SpsContentRow, {
|
|
14695
|
-
props: propsDoc$
|
|
14696
|
-
propTypes: propTypes$
|
|
14695
|
+
props: propsDoc$1l,
|
|
14696
|
+
propTypes: propTypes$1o,
|
|
14697
14697
|
displayName: "SpsContentRow"
|
|
14698
14698
|
});
|
|
14699
14699
|
const SpsContentRowExamples = {
|
|
@@ -15162,7 +15162,7 @@ function parse2(value) {
|
|
|
15162
15162
|
function weekOfMonth$1(date2) {
|
|
15163
15163
|
return Math.floor((date2.clone().date(1).day() + date2.date() - 1) / 7);
|
|
15164
15164
|
}
|
|
15165
|
-
const propsDoc$
|
|
15165
|
+
const propsDoc$1k = {
|
|
15166
15166
|
disabled: "boolean",
|
|
15167
15167
|
format: "string",
|
|
15168
15168
|
maxDate: "string",
|
|
@@ -15172,15 +15172,15 @@ const propsDoc$1j = {
|
|
|
15172
15172
|
placeholder: "string",
|
|
15173
15173
|
value: "string"
|
|
15174
15174
|
};
|
|
15175
|
-
const propTypes$
|
|
15176
|
-
disabled: propTypes$
|
|
15177
|
-
format: propTypes$
|
|
15178
|
-
maxDate: propTypes$
|
|
15179
|
-
minDate: propTypes$
|
|
15175
|
+
const propTypes$1n = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
15176
|
+
disabled: propTypes$1M.exports.bool,
|
|
15177
|
+
format: propTypes$1M.exports.string,
|
|
15178
|
+
maxDate: propTypes$1M.exports.string,
|
|
15179
|
+
minDate: propTypes$1M.exports.string,
|
|
15180
15180
|
onChange: fun(),
|
|
15181
15181
|
onClickOutside: fun(),
|
|
15182
|
-
placeholder: propTypes$
|
|
15183
|
-
value: propTypes$
|
|
15182
|
+
placeholder: propTypes$1M.exports.string,
|
|
15183
|
+
value: propTypes$1M.exports.string
|
|
15184
15184
|
});
|
|
15185
15185
|
function SpsDatepicker(props2) {
|
|
15186
15186
|
const _a = props2, {
|
|
@@ -15543,8 +15543,8 @@ function SpsDatepicker(props2) {
|
|
|
15543
15543
|
}))));
|
|
15544
15544
|
}
|
|
15545
15545
|
Object.assign(SpsDatepicker, {
|
|
15546
|
-
props: propsDoc$
|
|
15547
|
-
propTypes: propTypes$
|
|
15546
|
+
props: propsDoc$1k,
|
|
15547
|
+
propTypes: propTypes$1n,
|
|
15548
15548
|
displayName: "SpsDatepicker"
|
|
15549
15549
|
});
|
|
15550
15550
|
const SpsDatepickerExamples = {
|
|
@@ -15639,7 +15639,7 @@ const SpsDatepickerExamples = {
|
|
|
15639
15639
|
}
|
|
15640
15640
|
}
|
|
15641
15641
|
};
|
|
15642
|
-
const propsDoc$
|
|
15642
|
+
const propsDoc$1j = {
|
|
15643
15643
|
placeholder: "string",
|
|
15644
15644
|
disabled: "boolean",
|
|
15645
15645
|
format: "string",
|
|
@@ -15650,13 +15650,13 @@ const propsDoc$1i = {
|
|
|
15650
15650
|
value: "MomentRange",
|
|
15651
15651
|
preset: "Duration"
|
|
15652
15652
|
};
|
|
15653
|
-
const propTypes$
|
|
15654
|
-
placeholder: propTypes$
|
|
15655
|
-
disabled: propTypes$
|
|
15656
|
-
format: propTypes$
|
|
15657
|
-
minDate: propTypes$
|
|
15658
|
-
maxDate: propTypes$
|
|
15659
|
-
availablePresets: propTypes$
|
|
15653
|
+
const propTypes$1m = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
15654
|
+
placeholder: propTypes$1M.exports.string,
|
|
15655
|
+
disabled: propTypes$1M.exports.bool,
|
|
15656
|
+
format: propTypes$1M.exports.string,
|
|
15657
|
+
minDate: propTypes$1M.exports.string,
|
|
15658
|
+
maxDate: propTypes$1M.exports.string,
|
|
15659
|
+
availablePresets: propTypes$1M.exports.array,
|
|
15660
15660
|
onChange: fun(),
|
|
15661
15661
|
value: impl(),
|
|
15662
15662
|
preset: impl()
|
|
@@ -16304,8 +16304,8 @@ function SpsDateRangePicker(props2) {
|
|
|
16304
16304
|
}) : "")));
|
|
16305
16305
|
}
|
|
16306
16306
|
Object.assign(SpsDateRangePicker, {
|
|
16307
|
-
props: propsDoc$
|
|
16308
|
-
propTypes: propTypes$
|
|
16307
|
+
props: propsDoc$1j,
|
|
16308
|
+
propTypes: propTypes$1m,
|
|
16309
16309
|
displayName: "SpsDateRangePicker"
|
|
16310
16310
|
});
|
|
16311
16311
|
const SpsDateRangePickerExamples = {
|
|
@@ -20908,7 +20908,7 @@ const formatMaps = {
|
|
|
20908
20908
|
LONG_FULLDATETIME: "LLLL",
|
|
20909
20909
|
LONG_FULLDATETIME_ZONE: "LLLL z"
|
|
20910
20910
|
};
|
|
20911
|
-
const propsDoc$
|
|
20911
|
+
const propsDoc$1i = {
|
|
20912
20912
|
currentUser: "any",
|
|
20913
20913
|
dateToFormat: "string | Date",
|
|
20914
20914
|
format: "string",
|
|
@@ -20917,17 +20917,17 @@ const propsDoc$1h = {
|
|
|
20917
20917
|
relativeHrs: "number",
|
|
20918
20918
|
tz: "string"
|
|
20919
20919
|
};
|
|
20920
|
-
const propTypes$
|
|
20921
|
-
currentUser: propTypes$
|
|
20922
|
-
dateToFormat: propTypes$
|
|
20923
|
-
propTypes$
|
|
20924
|
-
propTypes$
|
|
20920
|
+
const propTypes$1l = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
20921
|
+
currentUser: propTypes$1M.exports.any,
|
|
20922
|
+
dateToFormat: propTypes$1M.exports.oneOfType([
|
|
20923
|
+
propTypes$1M.exports.string,
|
|
20924
|
+
propTypes$1M.exports.instanceOf(Date)
|
|
20925
20925
|
]),
|
|
20926
|
-
format: propTypes$
|
|
20927
|
-
locale: propTypes$
|
|
20928
|
-
relative: propTypes$
|
|
20929
|
-
relativeHrs: propTypes$
|
|
20930
|
-
tz: propTypes$
|
|
20926
|
+
format: propTypes$1M.exports.string,
|
|
20927
|
+
locale: propTypes$1M.exports.string,
|
|
20928
|
+
relative: propTypes$1M.exports.bool,
|
|
20929
|
+
relativeHrs: propTypes$1M.exports.number,
|
|
20930
|
+
tz: propTypes$1M.exports.string
|
|
20931
20931
|
});
|
|
20932
20932
|
function showRelative(dateToCheck, relative, relativeHrs) {
|
|
20933
20933
|
if (!relativeHrs && !relative) {
|
|
@@ -21003,8 +21003,8 @@ function SpsDateTime(props2) {
|
|
|
21003
21003
|
}));
|
|
21004
21004
|
}
|
|
21005
21005
|
Object.assign(SpsDateTime, {
|
|
21006
|
-
props: propsDoc$
|
|
21007
|
-
propTypes: propTypes$
|
|
21006
|
+
props: propsDoc$1i,
|
|
21007
|
+
propTypes: propTypes$1l,
|
|
21008
21008
|
displayName: "SpsDateTime"
|
|
21009
21009
|
});
|
|
21010
21010
|
const SpsDatetimeExamples = {
|
|
@@ -21025,15 +21025,15 @@ const SpsDatetimeExamples = {
|
|
|
21025
21025
|
}
|
|
21026
21026
|
}
|
|
21027
21027
|
};
|
|
21028
|
-
const propsDoc$
|
|
21028
|
+
const propsDoc$1h = {
|
|
21029
21029
|
compact: "boolean",
|
|
21030
21030
|
wideTerms: "boolean",
|
|
21031
21031
|
widerTerms: "boolean"
|
|
21032
21032
|
};
|
|
21033
|
-
const propTypes$
|
|
21034
|
-
compact: propTypes$
|
|
21035
|
-
wideTerms: propTypes$
|
|
21036
|
-
widerTerms: propTypes$
|
|
21033
|
+
const propTypes$1k = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
21034
|
+
compact: propTypes$1M.exports.bool,
|
|
21035
|
+
wideTerms: propTypes$1M.exports.bool,
|
|
21036
|
+
widerTerms: propTypes$1M.exports.bool
|
|
21037
21037
|
});
|
|
21038
21038
|
function SpsDescriptionList(props2) {
|
|
21039
21039
|
const _a = props2, {
|
|
@@ -21073,20 +21073,20 @@ function SpsDescriptionList(props2) {
|
|
|
21073
21073
|
}, rest), childrenWithProps);
|
|
21074
21074
|
}
|
|
21075
21075
|
Object.assign(SpsDescriptionList, {
|
|
21076
|
-
props: propsDoc$
|
|
21077
|
-
propTypes: propTypes$
|
|
21076
|
+
props: propsDoc$1h,
|
|
21077
|
+
propTypes: propTypes$1k,
|
|
21078
21078
|
displayName: "SpsDescriptionList / SpsDl"
|
|
21079
21079
|
});
|
|
21080
21080
|
function SpsDl(p2) {
|
|
21081
21081
|
return SpsDescriptionList(p2);
|
|
21082
21082
|
}
|
|
21083
21083
|
Object.assign(SpsDl, {
|
|
21084
|
-
props: propsDoc$
|
|
21085
|
-
propTypes: propTypes$
|
|
21084
|
+
props: propsDoc$1h,
|
|
21085
|
+
propTypes: propTypes$1k,
|
|
21086
21086
|
displayName: "SpsDescriptionList / SpsDl"
|
|
21087
21087
|
});
|
|
21088
|
-
const propsDoc$
|
|
21089
|
-
const propTypes$
|
|
21088
|
+
const propsDoc$1g = {};
|
|
21089
|
+
const propTypes$1j = __spreadValues({}, spsGlobalPropTypes);
|
|
21090
21090
|
function SpsDescriptionListDefinition(props2) {
|
|
21091
21091
|
const _a = props2, {
|
|
21092
21092
|
children,
|
|
@@ -21106,16 +21106,16 @@ function SpsDescriptionListDefinition(props2) {
|
|
|
21106
21106
|
}, rest), children);
|
|
21107
21107
|
}
|
|
21108
21108
|
Object.assign(SpsDescriptionListDefinition, {
|
|
21109
|
-
props: propsDoc$
|
|
21110
|
-
propTypes: propTypes$
|
|
21109
|
+
props: propsDoc$1g,
|
|
21110
|
+
propTypes: propTypes$1j,
|
|
21111
21111
|
displayName: "SpsDescriptionListDefinition / SpsDd"
|
|
21112
21112
|
});
|
|
21113
21113
|
function SpsDd(p2) {
|
|
21114
21114
|
return SpsDescriptionListDefinition(p2);
|
|
21115
21115
|
}
|
|
21116
21116
|
Object.assign(SpsDd, {
|
|
21117
|
-
props: propsDoc$
|
|
21118
|
-
propTypes: propTypes$
|
|
21117
|
+
props: propsDoc$1g,
|
|
21118
|
+
propTypes: propTypes$1j,
|
|
21119
21119
|
displayName: "SpsDescriptionListDefinition / SpsDd"
|
|
21120
21120
|
});
|
|
21121
21121
|
var TooltipVisibility;
|
|
@@ -21130,7 +21130,7 @@ function toggleTooltipState(state) {
|
|
|
21130
21130
|
}
|
|
21131
21131
|
const CARET_SPACING_PX = 13;
|
|
21132
21132
|
const openTips = new Map();
|
|
21133
|
-
const propsDoc$
|
|
21133
|
+
const propsDoc$1f = {
|
|
21134
21134
|
for: { type: "React.MutableRefObject<any> | string", required: true },
|
|
21135
21135
|
hideDelay: "number",
|
|
21136
21136
|
isShown: "TooltipVisibility",
|
|
@@ -21142,17 +21142,17 @@ const propsDoc$1e = {
|
|
|
21142
21142
|
showOn: "TooltipShowTrigger",
|
|
21143
21143
|
title: "string | ReactNode"
|
|
21144
21144
|
};
|
|
21145
|
-
const propTypes$
|
|
21146
|
-
for: propTypes$
|
|
21147
|
-
hideDelay: propTypes$
|
|
21145
|
+
const propTypes$1i = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
21146
|
+
for: propTypes$1M.exports.oneOfType([ref(), propTypes$1M.exports.string]).isRequired,
|
|
21147
|
+
hideDelay: propTypes$1M.exports.number,
|
|
21148
21148
|
isShown: enumValue(TooltipVisibility),
|
|
21149
21149
|
kind: enumValue(TooltipKind),
|
|
21150
|
-
offsets: propTypes$
|
|
21150
|
+
offsets: propTypes$1M.exports.arrayOf(propTypes$1M.exports.number),
|
|
21151
21151
|
onDeferred: fun(),
|
|
21152
21152
|
position: enumValue(Position),
|
|
21153
21153
|
altPosition: enumValue(Position),
|
|
21154
21154
|
showOn: enumValue(TooltipShowTrigger),
|
|
21155
|
-
title: propTypes$
|
|
21155
|
+
title: propTypes$1M.exports.string || propTypes$1M.exports.node
|
|
21156
21156
|
});
|
|
21157
21157
|
function SpsTooltip({
|
|
21158
21158
|
children,
|
|
@@ -21318,26 +21318,26 @@ function SpsTooltip({
|
|
|
21318
21318
|
})));
|
|
21319
21319
|
}
|
|
21320
21320
|
Object.assign(SpsTooltip, {
|
|
21321
|
-
props: propsDoc$
|
|
21322
|
-
propTypes: propTypes$
|
|
21321
|
+
props: propsDoc$1f,
|
|
21322
|
+
propTypes: propTypes$1i,
|
|
21323
21323
|
displayName: "SpsTooltip"
|
|
21324
21324
|
});
|
|
21325
|
-
const propsDoc$
|
|
21325
|
+
const propsDoc$1e = {
|
|
21326
21326
|
error: "boolean",
|
|
21327
21327
|
errors: "ReactNodeOrRenderFn",
|
|
21328
21328
|
help: "ReactNodeOrRenderFn",
|
|
21329
21329
|
labelFor: "SpsFormFieldMeta<any>",
|
|
21330
21330
|
required: "boolean"
|
|
21331
21331
|
};
|
|
21332
|
-
const propTypes$
|
|
21333
|
-
error: propTypes$
|
|
21332
|
+
const propTypes$1h = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
21333
|
+
error: propTypes$1M.exports.bool,
|
|
21334
21334
|
errors: nodeOrRenderFn,
|
|
21335
21335
|
help: nodeOrRenderFn,
|
|
21336
|
-
labelFor: propTypes$
|
|
21336
|
+
labelFor: propTypes$1M.exports.oneOfType([
|
|
21337
21337
|
impl(),
|
|
21338
21338
|
impl()
|
|
21339
21339
|
]),
|
|
21340
|
-
required: propTypes$
|
|
21340
|
+
required: propTypes$1M.exports.bool
|
|
21341
21341
|
});
|
|
21342
21342
|
function SpsDescriptionListTerm(props2) {
|
|
21343
21343
|
const _a = props2, {
|
|
@@ -21393,16 +21393,16 @@ function SpsDescriptionListTerm(props2) {
|
|
|
21393
21393
|
}, contentOf(tipKind === TooltipKind.ERROR ? errors : help)));
|
|
21394
21394
|
}
|
|
21395
21395
|
Object.assign(SpsDescriptionListTerm, {
|
|
21396
|
-
props: propsDoc$
|
|
21397
|
-
propTypes: propTypes$
|
|
21396
|
+
props: propsDoc$1e,
|
|
21397
|
+
propTypes: propTypes$1h,
|
|
21398
21398
|
displayName: "SpsDescriptionListTerm / SpsDt"
|
|
21399
21399
|
});
|
|
21400
21400
|
function SpsDt(p2) {
|
|
21401
21401
|
return SpsDescriptionListTerm(p2);
|
|
21402
21402
|
}
|
|
21403
21403
|
Object.assign(SpsDt, {
|
|
21404
|
-
props: propsDoc$
|
|
21405
|
-
propTypes: propTypes$
|
|
21404
|
+
props: propsDoc$1e,
|
|
21405
|
+
propTypes: propTypes$1h,
|
|
21406
21406
|
displayName: "SpsDescriptionListTerm / SpsDt"
|
|
21407
21407
|
});
|
|
21408
21408
|
const SpsDescriptionListExamples = {
|
|
@@ -21880,19 +21880,19 @@ const SpsDropdownExamples = {
|
|
|
21880
21880
|
}
|
|
21881
21881
|
}
|
|
21882
21882
|
};
|
|
21883
|
-
const propsDoc$
|
|
21883
|
+
const propsDoc$1d = {
|
|
21884
21884
|
checked: "boolean",
|
|
21885
21885
|
onChange: "ChangeEventHandler",
|
|
21886
21886
|
indeterminate: "boolean",
|
|
21887
21887
|
disabled: "boolean",
|
|
21888
21888
|
options: "Array<SpsActionMethod | [SpsActionDescriptor, () => void]>"
|
|
21889
21889
|
};
|
|
21890
|
-
const propTypes$
|
|
21891
|
-
checked: propTypes$
|
|
21890
|
+
const propTypes$1g = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
21891
|
+
checked: propTypes$1M.exports.bool,
|
|
21892
21892
|
onChange: fun(),
|
|
21893
|
-
indeterminate: propTypes$
|
|
21894
|
-
options: propTypes$
|
|
21895
|
-
disabled: propTypes$
|
|
21893
|
+
indeterminate: propTypes$1M.exports.bool,
|
|
21894
|
+
options: propTypes$1M.exports.arrayOf(propTypes$1M.exports.oneOfType([propTypes$1M.exports.func, propTypes$1M.exports.any])).isRequired,
|
|
21895
|
+
disabled: propTypes$1M.exports.bool
|
|
21896
21896
|
});
|
|
21897
21897
|
function SpsCheckboxDropdown(props2) {
|
|
21898
21898
|
const _a = props2, {
|
|
@@ -21926,14 +21926,14 @@ function SpsCheckboxDropdown(props2) {
|
|
|
21926
21926
|
}));
|
|
21927
21927
|
}
|
|
21928
21928
|
Object.assign(SpsCheckboxDropdown, {
|
|
21929
|
-
props: propsDoc$
|
|
21930
|
-
propTypes: propTypes$
|
|
21929
|
+
props: propsDoc$1d,
|
|
21930
|
+
propTypes: propTypes$1g,
|
|
21931
21931
|
displayName: "SpsCheckboxDropdown"
|
|
21932
21932
|
});
|
|
21933
|
-
const propsDoc$
|
|
21933
|
+
const propsDoc$1c = {
|
|
21934
21934
|
kind: "FeedbackBlockKind"
|
|
21935
21935
|
};
|
|
21936
|
-
const propTypes$
|
|
21936
|
+
const propTypes$1f = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
21937
21937
|
kind: enumValue(FeedbackBlockKind)
|
|
21938
21938
|
});
|
|
21939
21939
|
function SpsFeedbackBlock(props2) {
|
|
@@ -21964,8 +21964,8 @@ function SpsFeedbackBlock(props2) {
|
|
|
21964
21964
|
}, children));
|
|
21965
21965
|
}
|
|
21966
21966
|
Object.assign(SpsFeedbackBlock, {
|
|
21967
|
-
props: propsDoc$
|
|
21968
|
-
propTypes: propTypes$
|
|
21967
|
+
props: propsDoc$1c,
|
|
21968
|
+
propTypes: propTypes$1f,
|
|
21969
21969
|
displayName: "SpsFeedbackBlock"
|
|
21970
21970
|
});
|
|
21971
21971
|
const SpsFeedbackBlockExamples = {
|
|
@@ -22067,7 +22067,7 @@ const SpsFeedbackBlockExamples = {
|
|
|
22067
22067
|
}
|
|
22068
22068
|
}
|
|
22069
22069
|
};
|
|
22070
|
-
const propsDoc$
|
|
22070
|
+
const propsDoc$1b = {
|
|
22071
22071
|
errors: "ReactNodeOrRenderFn",
|
|
22072
22072
|
formMeta: "SpsFormSetMeta<any>",
|
|
22073
22073
|
legend: "string",
|
|
@@ -22076,16 +22076,16 @@ const propsDoc$1a = {
|
|
|
22076
22076
|
onToggled: "(isEnabled: boolean) => void",
|
|
22077
22077
|
tooltip: "string"
|
|
22078
22078
|
};
|
|
22079
|
-
const propTypes$
|
|
22079
|
+
const propTypes$1e = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
22080
22080
|
errors: nodeOrRenderFn,
|
|
22081
22081
|
formArray: impl(),
|
|
22082
22082
|
formGroup: impl(),
|
|
22083
22083
|
formMeta: impl(),
|
|
22084
|
-
legend: propTypes$
|
|
22085
|
-
optional: propTypes$
|
|
22086
|
-
enabled: propTypes$
|
|
22084
|
+
legend: propTypes$1M.exports.string,
|
|
22085
|
+
optional: propTypes$1M.exports.bool,
|
|
22086
|
+
enabled: propTypes$1M.exports.bool,
|
|
22087
22087
|
onToggled: fun(),
|
|
22088
|
-
tooltip: propTypes$
|
|
22088
|
+
tooltip: propTypes$1M.exports.string
|
|
22089
22089
|
});
|
|
22090
22090
|
function SpsFieldset({
|
|
22091
22091
|
children,
|
|
@@ -22161,8 +22161,8 @@ function SpsFieldset({
|
|
|
22161
22161
|
}, contentOf(errors)), children));
|
|
22162
22162
|
}
|
|
22163
22163
|
Object.assign(SpsFieldset, {
|
|
22164
|
-
props: propsDoc$
|
|
22165
|
-
propTypes: propTypes$
|
|
22164
|
+
props: propsDoc$1b,
|
|
22165
|
+
propTypes: propTypes$1e,
|
|
22166
22166
|
displayName: "SpsFieldset"
|
|
22167
22167
|
});
|
|
22168
22168
|
const SpsFieldsetExamples = {
|
|
@@ -22448,8 +22448,8 @@ const SpsFieldsetExamples = {
|
|
|
22448
22448
|
}
|
|
22449
22449
|
}
|
|
22450
22450
|
};
|
|
22451
|
-
const propsDoc$
|
|
22452
|
-
const propTypes$
|
|
22451
|
+
const propsDoc$1a = {};
|
|
22452
|
+
const propTypes$1d = __spreadValues({}, spsGlobalPropTypes);
|
|
22453
22453
|
function SpsFocusedTaskActions(props2) {
|
|
22454
22454
|
const _a = props2, {
|
|
22455
22455
|
children,
|
|
@@ -22470,18 +22470,18 @@ function SpsFocusedTaskActions(props2) {
|
|
|
22470
22470
|
}, children)));
|
|
22471
22471
|
}
|
|
22472
22472
|
Object.assign(SpsFocusedTaskActions, {
|
|
22473
|
-
props: propsDoc$
|
|
22474
|
-
propTypes: propTypes$
|
|
22473
|
+
props: propsDoc$1a,
|
|
22474
|
+
propTypes: propTypes$1d,
|
|
22475
22475
|
displayName: "SpsFocusedTaskActions"
|
|
22476
22476
|
});
|
|
22477
|
-
const propsDoc$
|
|
22477
|
+
const propsDoc$19 = {
|
|
22478
22478
|
fullWidth: "boolean",
|
|
22479
22479
|
isOpen: "boolean",
|
|
22480
22480
|
onClose: "() => void"
|
|
22481
22481
|
};
|
|
22482
|
-
const propTypes$
|
|
22483
|
-
fullWidth: propTypes$
|
|
22484
|
-
isOpen: propTypes$
|
|
22482
|
+
const propTypes$1c = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
22483
|
+
fullWidth: propTypes$1M.exports.bool,
|
|
22484
|
+
isOpen: propTypes$1M.exports.bool,
|
|
22485
22485
|
onClose: fun()
|
|
22486
22486
|
});
|
|
22487
22487
|
function SpsFocusedTask(props2) {
|
|
@@ -22538,8 +22538,8 @@ function SpsFocusedTask(props2) {
|
|
|
22538
22538
|
}, isOpen && content)), actions);
|
|
22539
22539
|
}
|
|
22540
22540
|
Object.assign(SpsFocusedTask, {
|
|
22541
|
-
props: propsDoc$
|
|
22542
|
-
propTypes: propTypes$
|
|
22541
|
+
props: propsDoc$19,
|
|
22542
|
+
propTypes: propTypes$1c,
|
|
22543
22543
|
displayName: "SpsFocusedTask"
|
|
22544
22544
|
});
|
|
22545
22545
|
const SpsFocusedTaskExamples = {
|
|
@@ -24022,19 +24022,19 @@ const SpsAddRemoveFormRowExamples = {
|
|
|
24022
24022
|
}
|
|
24023
24023
|
}
|
|
24024
24024
|
};
|
|
24025
|
-
const propsDoc$
|
|
24025
|
+
const propsDoc$18 = {
|
|
24026
24026
|
imgSrc: "string",
|
|
24027
24027
|
kind: "GrowlerKind",
|
|
24028
24028
|
onClose: "() => void",
|
|
24029
24029
|
persist: "boolean",
|
|
24030
24030
|
title: "string"
|
|
24031
24031
|
};
|
|
24032
|
-
const propTypes$
|
|
24033
|
-
imgSrc: propTypes$
|
|
24032
|
+
const propTypes$1b = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
24033
|
+
imgSrc: propTypes$1M.exports.string,
|
|
24034
24034
|
kind: enumValue(GrowlerKind),
|
|
24035
24035
|
onClose: fun(),
|
|
24036
|
-
persist: propTypes$
|
|
24037
|
-
title: propTypes$
|
|
24036
|
+
persist: propTypes$1M.exports.bool,
|
|
24037
|
+
title: propTypes$1M.exports.string
|
|
24038
24038
|
});
|
|
24039
24039
|
function SpsGrowler(props2) {
|
|
24040
24040
|
const _a = props2, {
|
|
@@ -24140,8 +24140,8 @@ function SpsGrowler(props2) {
|
|
|
24140
24140
|
})))));
|
|
24141
24141
|
}
|
|
24142
24142
|
Object.assign(SpsGrowler, {
|
|
24143
|
-
props: propsDoc$
|
|
24144
|
-
propTypes: propTypes$
|
|
24143
|
+
props: propsDoc$18,
|
|
24144
|
+
propTypes: propTypes$1b,
|
|
24145
24145
|
displayName: "SpsGrowler"
|
|
24146
24146
|
});
|
|
24147
24147
|
const SpsGrowlerExamples = {
|
|
@@ -24516,18 +24516,18 @@ const SpsGrowlerExamples = {
|
|
|
24516
24516
|
}
|
|
24517
24517
|
}
|
|
24518
24518
|
};
|
|
24519
|
-
const propsDoc$
|
|
24519
|
+
const propsDoc$17 = {
|
|
24520
24520
|
disabled: "boolean",
|
|
24521
24521
|
min: "number",
|
|
24522
24522
|
max: "number",
|
|
24523
24523
|
step: "number",
|
|
24524
24524
|
onValueChange: "(newValue: number) => void"
|
|
24525
24525
|
};
|
|
24526
|
-
const propTypes$
|
|
24527
|
-
disabled: propTypes$
|
|
24528
|
-
min: propTypes$
|
|
24529
|
-
max: propTypes$
|
|
24530
|
-
step: propTypes$
|
|
24526
|
+
const propTypes$1a = __spreadValues({
|
|
24527
|
+
disabled: propTypes$1M.exports.bool,
|
|
24528
|
+
min: propTypes$1M.exports.number,
|
|
24529
|
+
max: propTypes$1M.exports.number,
|
|
24530
|
+
step: propTypes$1M.exports.number,
|
|
24531
24531
|
onValueChange: fun()
|
|
24532
24532
|
}, spsGlobalPropTypes);
|
|
24533
24533
|
function SpsIncrementor(props2) {
|
|
@@ -24630,8 +24630,8 @@ function SpsIncrementor(props2) {
|
|
|
24630
24630
|
}))));
|
|
24631
24631
|
}
|
|
24632
24632
|
Object.assign(SpsIncrementor, {
|
|
24633
|
-
props: propsDoc$
|
|
24634
|
-
propTypes: propTypes$
|
|
24633
|
+
props: propsDoc$17,
|
|
24634
|
+
propTypes: propTypes$1a,
|
|
24635
24635
|
displayName: "SpsIncrementor"
|
|
24636
24636
|
});
|
|
24637
24637
|
const SpsIncrementorExamples = {
|
|
@@ -24670,7 +24670,7 @@ function SpsInsights(props2) {
|
|
|
24670
24670
|
className: "insight-tile-wrapper"
|
|
24671
24671
|
}, children);
|
|
24672
24672
|
}
|
|
24673
|
-
const propsDoc$
|
|
24673
|
+
const propsDoc$16 = {
|
|
24674
24674
|
horizontal: "boolean",
|
|
24675
24675
|
icon: "SpsIcon",
|
|
24676
24676
|
kind: "SpsInsightTileKind",
|
|
@@ -24679,14 +24679,14 @@ const propsDoc$15 = {
|
|
|
24679
24679
|
partnerCount: "number",
|
|
24680
24680
|
totalPartners: "number"
|
|
24681
24681
|
};
|
|
24682
|
-
const propTypes$
|
|
24683
|
-
horizontal: propTypes$
|
|
24682
|
+
const propTypes$19 = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
24683
|
+
horizontal: propTypes$1M.exports.bool,
|
|
24684
24684
|
icon: enumValue(SpsIcon),
|
|
24685
24685
|
kind: enumValue(SpsInsightTileKind),
|
|
24686
|
-
title: propTypes$
|
|
24687
|
-
metric: propTypes$
|
|
24688
|
-
partnerCount: propTypes$
|
|
24689
|
-
totalPartners: propTypes$
|
|
24686
|
+
title: propTypes$1M.exports.string,
|
|
24687
|
+
metric: propTypes$1M.exports.number || propTypes$1M.exports.string,
|
|
24688
|
+
partnerCount: propTypes$1M.exports.number,
|
|
24689
|
+
totalPartners: propTypes$1M.exports.number
|
|
24690
24690
|
});
|
|
24691
24691
|
function SpsInsightTile(props2) {
|
|
24692
24692
|
const _a = props2, {
|
|
@@ -24746,8 +24746,8 @@ function SpsInsightTile(props2) {
|
|
|
24746
24746
|
}, t2("design-system:insightTile.partners")))));
|
|
24747
24747
|
}
|
|
24748
24748
|
Object.assign(SpsInsightTile, {
|
|
24749
|
-
props: propsDoc$
|
|
24750
|
-
propTypes: propTypes$
|
|
24749
|
+
props: propsDoc$16,
|
|
24750
|
+
propTypes: propTypes$19,
|
|
24751
24751
|
displayName: "SpsInsightTile"
|
|
24752
24752
|
});
|
|
24753
24753
|
const SpsInsightTileExamples = {
|
|
@@ -25021,11 +25021,11 @@ const SpsInsightTileExamples = {
|
|
|
25021
25021
|
}
|
|
25022
25022
|
}
|
|
25023
25023
|
};
|
|
25024
|
-
const propsDoc$
|
|
25024
|
+
const propsDoc$15 = {
|
|
25025
25025
|
inline: "boolean"
|
|
25026
25026
|
};
|
|
25027
|
-
const propTypes$
|
|
25028
|
-
inline: propTypes$
|
|
25027
|
+
const propTypes$18 = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
25028
|
+
inline: propTypes$1M.exports.bool
|
|
25029
25029
|
});
|
|
25030
25030
|
function SpsKeyValueList(props2) {
|
|
25031
25031
|
const _a = props2, {
|
|
@@ -25048,16 +25048,16 @@ function SpsKeyValueList(props2) {
|
|
|
25048
25048
|
}, rest), children);
|
|
25049
25049
|
}
|
|
25050
25050
|
Object.assign(SpsKeyValueList, {
|
|
25051
|
-
props: propsDoc$
|
|
25052
|
-
propTypes: propTypes$
|
|
25051
|
+
props: propsDoc$15,
|
|
25052
|
+
propTypes: propTypes$18,
|
|
25053
25053
|
displayName: "SpsKeyValueList"
|
|
25054
25054
|
});
|
|
25055
|
-
const propsDoc$
|
|
25055
|
+
const propsDoc$14 = {
|
|
25056
25056
|
itemKey: { type: "string | nodeOrRenderFn", required: true },
|
|
25057
25057
|
titleColor: "KeyValueListTitleColor"
|
|
25058
25058
|
};
|
|
25059
|
-
const propTypes$
|
|
25060
|
-
itemKey: propTypes$
|
|
25059
|
+
const propTypes$17 = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
25060
|
+
itemKey: propTypes$1M.exports.string.isRequired || nodeOrRenderFn.isRequired,
|
|
25061
25061
|
titleColor: enumValue(KeyValueListTitleColor)
|
|
25062
25062
|
});
|
|
25063
25063
|
function SpsKeyValueListItem(props2) {
|
|
@@ -25089,8 +25089,8 @@ function SpsKeyValueListItem(props2) {
|
|
|
25089
25089
|
}, children));
|
|
25090
25090
|
}
|
|
25091
25091
|
Object.assign(SpsKeyValueListItem, {
|
|
25092
|
-
props: propsDoc$
|
|
25093
|
-
propTypes: propTypes$
|
|
25092
|
+
props: propsDoc$14,
|
|
25093
|
+
propTypes: propTypes$17,
|
|
25094
25094
|
displayName: "SpsKeyValueListItem"
|
|
25095
25095
|
});
|
|
25096
25096
|
const SpsKeyValueListExamples = {
|
|
@@ -25133,7 +25133,7 @@ const SpsKeyValueListExamples = {
|
|
|
25133
25133
|
}
|
|
25134
25134
|
}
|
|
25135
25135
|
};
|
|
25136
|
-
const propsDoc$
|
|
25136
|
+
const propsDoc$13 = {
|
|
25137
25137
|
for: { type: "SpsFormMetaBase<any>", required: true },
|
|
25138
25138
|
description: "string",
|
|
25139
25139
|
stronglySuggested: "boolean",
|
|
@@ -25142,16 +25142,16 @@ const propsDoc$12 = {
|
|
|
25142
25142
|
helpIconColor: "string",
|
|
25143
25143
|
errors: "ReactNodeOrRenderFn"
|
|
25144
25144
|
};
|
|
25145
|
-
const propTypes$
|
|
25146
|
-
description: propTypes$
|
|
25147
|
-
for: propTypes$
|
|
25145
|
+
const propTypes$16 = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
25146
|
+
description: propTypes$1M.exports.string,
|
|
25147
|
+
for: propTypes$1M.exports.oneOfType([
|
|
25148
25148
|
impl(),
|
|
25149
25149
|
impl()
|
|
25150
25150
|
]).isRequired,
|
|
25151
|
-
stronglySuggested: propTypes$
|
|
25151
|
+
stronglySuggested: propTypes$1M.exports.bool,
|
|
25152
25152
|
help: nodeOrRenderFn,
|
|
25153
25153
|
helpIcon: enumValue(SpsIcon),
|
|
25154
|
-
helpIconColor: propTypes$
|
|
25154
|
+
helpIconColor: propTypes$1M.exports.string,
|
|
25155
25155
|
errors: nodeOrRenderFn
|
|
25156
25156
|
});
|
|
25157
25157
|
function SpsLabel(_o) {
|
|
@@ -25312,8 +25312,8 @@ function SpsLabel(_o) {
|
|
|
25312
25312
|
}, description));
|
|
25313
25313
|
}
|
|
25314
25314
|
Object.assign(SpsLabel, {
|
|
25315
|
-
props: propsDoc$
|
|
25316
|
-
propTypes: propTypes$
|
|
25315
|
+
props: propsDoc$13,
|
|
25316
|
+
propTypes: propTypes$16,
|
|
25317
25317
|
displayName: "SpsLabel"
|
|
25318
25318
|
});
|
|
25319
25319
|
const SpsLabelExamples = {
|
|
@@ -25531,13 +25531,13 @@ const SpsLabelExamples = {
|
|
|
25531
25531
|
}
|
|
25532
25532
|
}
|
|
25533
25533
|
};
|
|
25534
|
-
const propsDoc$
|
|
25534
|
+
const propsDoc$12 = {
|
|
25535
25535
|
clearSelected: { type: "() => void", required: true },
|
|
25536
25536
|
itemsSelected: { type: "string | number", required: true }
|
|
25537
25537
|
};
|
|
25538
|
-
const propTypes$
|
|
25538
|
+
const propTypes$15 = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
25539
25539
|
clearSelected: fun().isRequired,
|
|
25540
|
-
itemsSelected: propTypes$
|
|
25540
|
+
itemsSelected: propTypes$1M.exports.oneOfType([propTypes$1M.exports.string, propTypes$1M.exports.number])
|
|
25541
25541
|
});
|
|
25542
25542
|
function SpsListActionBar(props2) {
|
|
25543
25543
|
const _a = props2, {
|
|
@@ -25587,8 +25587,8 @@ function SpsListActionBar(props2) {
|
|
|
25587
25587
|
}, t2("design-system:listActionBar.clearSelected")))));
|
|
25588
25588
|
}
|
|
25589
25589
|
Object.assign(SpsListActionBar, {
|
|
25590
|
-
props: propsDoc$
|
|
25591
|
-
propTypes: propTypes$
|
|
25590
|
+
props: propsDoc$12,
|
|
25591
|
+
propTypes: propTypes$15,
|
|
25592
25592
|
displayName: "SpsListActionBar"
|
|
25593
25593
|
});
|
|
25594
25594
|
const getScrollParent = (node) => {
|
|
@@ -25784,18 +25784,18 @@ const usePinnedTableHeadStyle = (containerRef) => {
|
|
|
25784
25784
|
};
|
|
25785
25785
|
});
|
|
25786
25786
|
};
|
|
25787
|
-
const propsDoc$
|
|
25787
|
+
const propsDoc$11 = {
|
|
25788
25788
|
controlCell: "boolean",
|
|
25789
25789
|
currentSort: "Array<SortedColumn>",
|
|
25790
25790
|
onSortChange: "SortChangeHandler",
|
|
25791
25791
|
sortKey: "string"
|
|
25792
25792
|
};
|
|
25793
|
-
const propTypes$
|
|
25794
|
-
controlCell: propTypes$
|
|
25795
|
-
currentSort: propTypes$
|
|
25793
|
+
const propTypes$14 = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
25794
|
+
controlCell: propTypes$1M.exports.bool,
|
|
25795
|
+
currentSort: propTypes$1M.exports.arrayOf(impl()),
|
|
25796
25796
|
onSortChange: fun(),
|
|
25797
|
-
sortKey: propTypes$
|
|
25798
|
-
pinned: propTypes$
|
|
25797
|
+
sortKey: propTypes$1M.exports.string,
|
|
25798
|
+
pinned: propTypes$1M.exports.bool
|
|
25799
25799
|
});
|
|
25800
25800
|
function SpsTableHeader(props2) {
|
|
25801
25801
|
const _a = props2, {
|
|
@@ -25854,24 +25854,24 @@ function SpsTableHeader(props2) {
|
|
|
25854
25854
|
}, children));
|
|
25855
25855
|
}
|
|
25856
25856
|
Object.assign(SpsTableHeader, {
|
|
25857
|
-
props: propsDoc$
|
|
25858
|
-
propTypes: propTypes$
|
|
25857
|
+
props: propsDoc$11,
|
|
25858
|
+
propTypes: propTypes$14,
|
|
25859
25859
|
displayName: "SpsTableHeader"
|
|
25860
25860
|
});
|
|
25861
25861
|
function SpsTh(props2) {
|
|
25862
25862
|
return /* @__PURE__ */ React.createElement(SpsTableHeader, __spreadValues({}, props2));
|
|
25863
25863
|
}
|
|
25864
25864
|
Object.assign(SpsTh, {
|
|
25865
|
-
props: propsDoc$
|
|
25866
|
-
propTypes: propTypes$
|
|
25865
|
+
props: propsDoc$11,
|
|
25866
|
+
propTypes: propTypes$14,
|
|
25867
25867
|
displayName: "SpsTh"
|
|
25868
25868
|
});
|
|
25869
|
-
const propsDoc
|
|
25869
|
+
const propsDoc$10 = {
|
|
25870
25870
|
currentSort: "Array<SortedColumn>",
|
|
25871
25871
|
onSortChange: "SortChangeHandler"
|
|
25872
25872
|
};
|
|
25873
|
-
const propTypes$
|
|
25874
|
-
currentSort: propTypes$
|
|
25873
|
+
const propTypes$13 = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
25874
|
+
currentSort: propTypes$1M.exports.arrayOf(impl()),
|
|
25875
25875
|
onSortChange: fun()
|
|
25876
25876
|
});
|
|
25877
25877
|
function SpsTableRow(props2) {
|
|
@@ -25907,26 +25907,26 @@ function SpsTableRow(props2) {
|
|
|
25907
25907
|
}));
|
|
25908
25908
|
}
|
|
25909
25909
|
Object.assign(SpsTableRow, {
|
|
25910
|
-
props: propsDoc
|
|
25911
|
-
propTypes: propTypes$
|
|
25910
|
+
props: propsDoc$10,
|
|
25911
|
+
propTypes: propTypes$13,
|
|
25912
25912
|
displayName: "SpsTableRow"
|
|
25913
25913
|
});
|
|
25914
25914
|
function SpsTr(props2) {
|
|
25915
25915
|
return /* @__PURE__ */ React.createElement(SpsTableRow, __spreadValues({}, props2));
|
|
25916
25916
|
}
|
|
25917
25917
|
Object.assign(SpsTr, {
|
|
25918
|
-
props: propsDoc
|
|
25919
|
-
propTypes: propTypes$
|
|
25918
|
+
props: propsDoc$10,
|
|
25919
|
+
propTypes: propTypes$13,
|
|
25920
25920
|
displayName: "SpsTr"
|
|
25921
25921
|
});
|
|
25922
|
-
const propsDoc
|
|
25922
|
+
const propsDoc$$ = {
|
|
25923
25923
|
currentSort: "Array<SortedColumn>",
|
|
25924
25924
|
onSortChange: "SortChangeHandler"
|
|
25925
25925
|
};
|
|
25926
|
-
const propTypes$
|
|
25926
|
+
const propTypes$12 = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
25927
25927
|
onSortChange: fun(),
|
|
25928
|
-
currentSort: propTypes$
|
|
25929
|
-
pinned: propTypes$
|
|
25928
|
+
currentSort: propTypes$1M.exports.arrayOf(impl()),
|
|
25929
|
+
pinned: propTypes$1M.exports.bool
|
|
25930
25930
|
});
|
|
25931
25931
|
function SpsTableHead(props2) {
|
|
25932
25932
|
const _a = props2, {
|
|
@@ -25962,27 +25962,27 @@ function SpsTableHead(props2) {
|
|
|
25962
25962
|
}));
|
|
25963
25963
|
}
|
|
25964
25964
|
Object.assign(SpsTableHead, {
|
|
25965
|
-
props: propsDoc
|
|
25966
|
-
propTypes: propTypes$
|
|
25965
|
+
props: propsDoc$$,
|
|
25966
|
+
propTypes: propTypes$12,
|
|
25967
25967
|
displayName: "SpsTableHead"
|
|
25968
25968
|
});
|
|
25969
25969
|
function SpsThead(props2) {
|
|
25970
25970
|
return /* @__PURE__ */ React.createElement(SpsTableHead, __spreadValues({}, props2));
|
|
25971
25971
|
}
|
|
25972
25972
|
Object.assign(SpsThead, {
|
|
25973
|
-
props: propsDoc
|
|
25974
|
-
propTypes: propTypes$
|
|
25973
|
+
props: propsDoc$$,
|
|
25974
|
+
propTypes: propTypes$12,
|
|
25975
25975
|
displayName: "SpsThead"
|
|
25976
25976
|
});
|
|
25977
|
-
const propsDoc$
|
|
25977
|
+
const propsDoc$_ = {
|
|
25978
25978
|
sort: "SortedColumn",
|
|
25979
25979
|
onSortChange: "SortChangeHandler",
|
|
25980
25980
|
selectable: "boolean"
|
|
25981
25981
|
};
|
|
25982
|
-
const propTypes$
|
|
25982
|
+
const propTypes$11 = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
25983
25983
|
onSortChange: fun(),
|
|
25984
|
-
sort: propTypes$
|
|
25985
|
-
selectable: propTypes$
|
|
25984
|
+
sort: propTypes$1M.exports.arrayOf(impl()),
|
|
25985
|
+
selectable: propTypes$1M.exports.bool
|
|
25986
25986
|
});
|
|
25987
25987
|
function SpsTable(props2) {
|
|
25988
25988
|
const _a = props2, {
|
|
@@ -26037,12 +26037,12 @@ function SpsTable(props2) {
|
|
|
26037
26037
|
})));
|
|
26038
26038
|
}
|
|
26039
26039
|
Object.assign(SpsTable, {
|
|
26040
|
-
props: propsDoc$
|
|
26041
|
-
propTypes: propTypes$
|
|
26040
|
+
props: propsDoc$_,
|
|
26041
|
+
propTypes: propTypes$11,
|
|
26042
26042
|
displayName: "SpsTable"
|
|
26043
26043
|
});
|
|
26044
|
-
const propsDoc$
|
|
26045
|
-
const propTypes
|
|
26044
|
+
const propsDoc$Z = {};
|
|
26045
|
+
const propTypes$10 = __spreadValues({}, spsGlobalPropTypes);
|
|
26046
26046
|
function SpsTableBody(props2) {
|
|
26047
26047
|
const _a = props2, {
|
|
26048
26048
|
children,
|
|
@@ -26062,34 +26062,34 @@ function SpsTableBody(props2) {
|
|
|
26062
26062
|
}, rest), children);
|
|
26063
26063
|
}
|
|
26064
26064
|
Object.assign(SpsTableBody, {
|
|
26065
|
-
props: propsDoc$
|
|
26066
|
-
propTypes: propTypes
|
|
26065
|
+
props: propsDoc$Z,
|
|
26066
|
+
propTypes: propTypes$10,
|
|
26067
26067
|
displayName: "SpsTableBody"
|
|
26068
26068
|
});
|
|
26069
26069
|
function SpsTbody(props2) {
|
|
26070
26070
|
return /* @__PURE__ */ React.createElement(SpsTableBody, __spreadValues({}, props2));
|
|
26071
26071
|
}
|
|
26072
26072
|
Object.assign(SpsTbody, {
|
|
26073
|
-
props: propsDoc$
|
|
26074
|
-
propTypes: propTypes
|
|
26073
|
+
props: propsDoc$Z,
|
|
26074
|
+
propTypes: propTypes$10,
|
|
26075
26075
|
displayName: "SpsTbody"
|
|
26076
26076
|
});
|
|
26077
|
-
const propsDoc$
|
|
26077
|
+
const propsDoc$Y = {
|
|
26078
26078
|
buttonCell: "boolean",
|
|
26079
26079
|
controlCell: "boolean",
|
|
26080
26080
|
wrap: "SpsTableCellWrapWidth"
|
|
26081
26081
|
};
|
|
26082
|
-
const propTypes
|
|
26083
|
-
buttonCell: propTypes$
|
|
26084
|
-
controlCell: propTypes$
|
|
26085
|
-
wrap: propTypes$
|
|
26082
|
+
const propTypes$$ = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
26083
|
+
buttonCell: propTypes$1M.exports.bool,
|
|
26084
|
+
controlCell: propTypes$1M.exports.bool,
|
|
26085
|
+
wrap: propTypes$1M.exports.oneOf([
|
|
26086
26086
|
200,
|
|
26087
26087
|
300,
|
|
26088
26088
|
400,
|
|
26089
26089
|
500,
|
|
26090
26090
|
600
|
|
26091
26091
|
]),
|
|
26092
|
-
pinned: propTypes$
|
|
26092
|
+
pinned: propTypes$1M.exports.bool
|
|
26093
26093
|
});
|
|
26094
26094
|
function SpsTableCell(props2) {
|
|
26095
26095
|
const _a = props2, {
|
|
@@ -26122,20 +26122,20 @@ function SpsTableCell(props2) {
|
|
|
26122
26122
|
}, rest), children);
|
|
26123
26123
|
}
|
|
26124
26124
|
Object.assign(SpsTableCell, {
|
|
26125
|
-
props: propsDoc$
|
|
26126
|
-
propTypes: propTypes
|
|
26125
|
+
props: propsDoc$Y,
|
|
26126
|
+
propTypes: propTypes$$,
|
|
26127
26127
|
displayName: "SpsTableCell"
|
|
26128
26128
|
});
|
|
26129
26129
|
function SpsTd(props2) {
|
|
26130
26130
|
return /* @__PURE__ */ React.createElement(SpsTableCell, __spreadValues({}, props2));
|
|
26131
26131
|
}
|
|
26132
26132
|
Object.assign(SpsTd, {
|
|
26133
|
-
props: propsDoc$
|
|
26134
|
-
propTypes: propTypes
|
|
26133
|
+
props: propsDoc$Y,
|
|
26134
|
+
propTypes: propTypes$$,
|
|
26135
26135
|
displayName: "SpsTd"
|
|
26136
26136
|
});
|
|
26137
|
-
const propsDoc$
|
|
26138
|
-
const propTypes$
|
|
26137
|
+
const propsDoc$X = {};
|
|
26138
|
+
const propTypes$_ = __spreadValues({}, spsGlobalPropTypes);
|
|
26139
26139
|
const CSS_BLOCK$3 = "sps-icon-button-panel";
|
|
26140
26140
|
function SpsIconButtonPanel(_q) {
|
|
26141
26141
|
var _r = _q, {
|
|
@@ -26154,8 +26154,8 @@ function SpsIconButtonPanel(_q) {
|
|
|
26154
26154
|
}, rest), iconButtons);
|
|
26155
26155
|
}
|
|
26156
26156
|
Object.assign(SpsIconButtonPanel, {
|
|
26157
|
-
props: propsDoc$
|
|
26158
|
-
propTypes: propTypes$
|
|
26157
|
+
props: propsDoc$X,
|
|
26158
|
+
propTypes: propTypes$_,
|
|
26159
26159
|
displayName: "SpsIconButtonPanel"
|
|
26160
26160
|
});
|
|
26161
26161
|
const SpsTableExamples = {
|
|
@@ -27339,8 +27339,8 @@ const SpsListActionBarExamples = {
|
|
|
27339
27339
|
}
|
|
27340
27340
|
}
|
|
27341
27341
|
};
|
|
27342
|
-
const propTypes$
|
|
27343
|
-
tabs: propTypes$
|
|
27342
|
+
const propTypes$Z = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
27343
|
+
tabs: propTypes$1M.exports.arrayOf(impl()).isRequired,
|
|
27344
27344
|
activeTab: impl(),
|
|
27345
27345
|
onTabChange: fun()
|
|
27346
27346
|
});
|
|
@@ -27404,18 +27404,18 @@ function SpsTabs(props2) {
|
|
|
27404
27404
|
}, tab2.tag)))));
|
|
27405
27405
|
}
|
|
27406
27406
|
Object.assign(SpsTabs, {
|
|
27407
|
-
propTypes: propTypes$
|
|
27407
|
+
propTypes: propTypes$Z,
|
|
27408
27408
|
displayName: "SpsTabs"
|
|
27409
27409
|
});
|
|
27410
|
-
const propsDoc$
|
|
27410
|
+
const propsDoc$W = {
|
|
27411
27411
|
formMeta: "SpsFormSetMeta<any>",
|
|
27412
27412
|
stacked: "boolean"
|
|
27413
27413
|
};
|
|
27414
|
-
const propTypes$
|
|
27414
|
+
const propTypes$Y = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
27415
27415
|
formArray: impl(),
|
|
27416
27416
|
formGroup: impl(),
|
|
27417
27417
|
formMeta: impl(),
|
|
27418
|
-
stacked: propTypes$
|
|
27418
|
+
stacked: propTypes$1M.exports.bool
|
|
27419
27419
|
});
|
|
27420
27420
|
function SpsInputGroup(_s) {
|
|
27421
27421
|
var _t = _s, {
|
|
@@ -27460,14 +27460,14 @@ function SpsInputGroup(_s) {
|
|
|
27460
27460
|
}, children));
|
|
27461
27461
|
}
|
|
27462
27462
|
Object.assign(SpsInputGroup, {
|
|
27463
|
-
props: propsDoc$
|
|
27464
|
-
propTypes: propTypes$
|
|
27463
|
+
props: propsDoc$W,
|
|
27464
|
+
propTypes: propTypes$Y,
|
|
27465
27465
|
displayName: "SpsInputGroup"
|
|
27466
27466
|
});
|
|
27467
|
-
const propsDoc$
|
|
27467
|
+
const propsDoc$V = {
|
|
27468
27468
|
onSubmit: "FormEventHandler"
|
|
27469
27469
|
};
|
|
27470
|
-
const propTypes$
|
|
27470
|
+
const propTypes$X = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
27471
27471
|
onSubmit: fun()
|
|
27472
27472
|
});
|
|
27473
27473
|
function SpsListToolbarSearch(props2) {
|
|
@@ -27490,9 +27490,22 @@ function SpsListToolbarSearch(props2) {
|
|
|
27490
27490
|
}, children));
|
|
27491
27491
|
}
|
|
27492
27492
|
Object.assign(SpsListToolbarSearch, {
|
|
27493
|
+
props: propsDoc$V,
|
|
27494
|
+
propTypes: propTypes$X,
|
|
27495
|
+
displayName: "SpsListToolbarSearch"
|
|
27496
|
+
});
|
|
27497
|
+
const propsDoc$U = {};
|
|
27498
|
+
const propTypes$W = __spreadValues({}, spsGlobalPropTypes);
|
|
27499
|
+
function SpsListToolbarSearchInfo(props2) {
|
|
27500
|
+
const {
|
|
27501
|
+
children
|
|
27502
|
+
} = props2;
|
|
27503
|
+
return /* @__PURE__ */ React.createElement("div", null, children);
|
|
27504
|
+
}
|
|
27505
|
+
Object.assign(SpsListToolbarSearchInfo, {
|
|
27493
27506
|
props: propsDoc$U,
|
|
27494
27507
|
propTypes: propTypes$W,
|
|
27495
|
-
displayName: "
|
|
27508
|
+
displayName: "SpsListToolbarSearchInfo"
|
|
27496
27509
|
});
|
|
27497
27510
|
const propsDoc$T = {
|
|
27498
27511
|
activeTab: "SpsTab",
|
|
@@ -27509,18 +27522,18 @@ const propsDoc$T = {
|
|
|
27509
27522
|
};
|
|
27510
27523
|
const propTypes$V = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
27511
27524
|
activeTab: impl(),
|
|
27512
|
-
advancedSearch: propTypes$
|
|
27513
|
-
isOpen: propTypes$
|
|
27514
|
-
enteredFields: propTypes$
|
|
27525
|
+
advancedSearch: propTypes$1M.exports.shape({
|
|
27526
|
+
isOpen: propTypes$1M.exports.bool,
|
|
27527
|
+
enteredFields: propTypes$1M.exports.number
|
|
27515
27528
|
}),
|
|
27516
27529
|
onToggleAdvancedSearch: fun(),
|
|
27517
27530
|
onTabChange: fun(),
|
|
27518
|
-
title: propTypes$
|
|
27519
|
-
tabs: propTypes$
|
|
27531
|
+
title: propTypes$1M.exports.string,
|
|
27532
|
+
tabs: propTypes$1M.exports.arrayOf(impl()),
|
|
27520
27533
|
onToolbarPinned: fun(),
|
|
27521
|
-
selectable: propTypes$
|
|
27522
|
-
isSelected: propTypes$
|
|
27523
|
-
isIndeterminate: propTypes$
|
|
27534
|
+
selectable: propTypes$1M.exports.bool,
|
|
27535
|
+
isSelected: propTypes$1M.exports.bool,
|
|
27536
|
+
isIndeterminate: propTypes$1M.exports.bool,
|
|
27524
27537
|
onSelectionChange: fun()
|
|
27525
27538
|
});
|
|
27526
27539
|
function SpsListToolbar(props2) {
|
|
@@ -27624,8 +27637,13 @@ function SpsListToolbar(props2) {
|
|
|
27624
27637
|
emitToolbarPinned(isPinned);
|
|
27625
27638
|
}, [isPinned]);
|
|
27626
27639
|
const classes = clsx(unsafelyReplaceClassName || "sps-list-toolbar", isPinned && "sps-list-toolbar--pinned", isPinned && "z-stratum-bar", advancedSearch && advancedSearch.isOpen && "sps-list-toolbar--advanced-search-open", className);
|
|
27627
|
-
const [
|
|
27628
|
-
|
|
27640
|
+
const [
|
|
27641
|
+
listToolbarSearch,
|
|
27642
|
+
listToolbarSearchInfo,
|
|
27643
|
+
otherChildren
|
|
27644
|
+
] = selectChildren(children, [
|
|
27645
|
+
{ type: SpsListToolbarSearch },
|
|
27646
|
+
{ type: SpsListToolbarSearchInfo }
|
|
27629
27647
|
]);
|
|
27630
27648
|
return /* @__PURE__ */ React.createElement("div", {
|
|
27631
27649
|
className: "sps-list-toolbar__wrapper",
|
|
@@ -27649,7 +27667,7 @@ function SpsListToolbar(props2) {
|
|
|
27649
27667
|
"data-testid": `${testId}__tabs`
|
|
27650
27668
|
}), /* @__PURE__ */ React.createElement("div", {
|
|
27651
27669
|
className: "sps-list-toolbar__search-controls"
|
|
27652
|
-
}, !title && listToolbarSearch, listToolbarSearch.length > 0 && advancedSearch && /* @__PURE__ */ React.createElement("div", {
|
|
27670
|
+
}, !title && listToolbarSearch, !title && listToolbarSearchInfo, listToolbarSearch.length > 0 && advancedSearch && /* @__PURE__ */ React.createElement("div", {
|
|
27653
27671
|
className: "sps-list-toolbar__advanced-search-toggle",
|
|
27654
27672
|
"data-testid": `${testId}__advanced-search`
|
|
27655
27673
|
}, /* @__PURE__ */ React.createElement("div", {
|
|
@@ -27924,6 +27942,50 @@ const SpsListToolbarExamples = {
|
|
|
27924
27942
|
)
|
|
27925
27943
|
}
|
|
27926
27944
|
`
|
|
27945
|
+
},
|
|
27946
|
+
searchInfo: {
|
|
27947
|
+
description: () => /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("h5", null, "Search Info"), /* @__PURE__ */ React.createElement("p", null, "Use SpsListToolbarSearchInfo component to add additional information about your search.")),
|
|
27948
|
+
react: code`
|
|
27949
|
+
function Component() {
|
|
27950
|
+
const filterKeys = ["Key Item ID", "Document Type", "Sender Name", "Receiver Name"];
|
|
27951
|
+
|
|
27952
|
+
const { formValue, formMeta, updateForm } = useSpsForm({
|
|
27953
|
+
searchText: "",
|
|
27954
|
+
filterOption: filterKeys[0],
|
|
27955
|
+
});
|
|
27956
|
+
|
|
27957
|
+
function handleSearch(event) {
|
|
27958
|
+
console.log(event, formValue.searchText)
|
|
27959
|
+
}
|
|
27960
|
+
|
|
27961
|
+
return (
|
|
27962
|
+
<SpsListToolbar>
|
|
27963
|
+
<SpsListToolbarSearch onSubmit={handleSearch}>
|
|
27964
|
+
<SpsSelect
|
|
27965
|
+
options={filterKeys}
|
|
27966
|
+
formMeta={formMeta.fields.filterOption}
|
|
27967
|
+
value={formValue.filterOption}
|
|
27968
|
+
notClearable
|
|
27969
|
+
/>
|
|
27970
|
+
<SpsTextInput
|
|
27971
|
+
value={formValue.searchText}
|
|
27972
|
+
formMeta={formMeta.fields.searchText}
|
|
27973
|
+
icon={SpsIcon.FILTER}
|
|
27974
|
+
placeholder="Filter fields"
|
|
27975
|
+
/>
|
|
27976
|
+
</SpsListToolbarSearch>
|
|
27977
|
+
<SpsListToolbarSearchInfo>
|
|
27978
|
+
<div style={{ display: 'flex', alignItems: 'center'}}>
|
|
27979
|
+
<span style={{ marginRight: 5 }} >
|
|
27980
|
+
Key Item ID = Vendor Part Number
|
|
27981
|
+
</span>
|
|
27982
|
+
<SpsI icon={SpsIcon.INFO_CIRCLE} className="blue200"/>
|
|
27983
|
+
</div>
|
|
27984
|
+
</SpsListToolbarSearchInfo>
|
|
27985
|
+
</SpsListToolbar>
|
|
27986
|
+
)
|
|
27987
|
+
}
|
|
27988
|
+
`
|
|
27927
27989
|
}
|
|
27928
27990
|
}
|
|
27929
27991
|
},
|
|
@@ -28139,7 +28201,7 @@ const propsDoc$S = {
|
|
|
28139
28201
|
};
|
|
28140
28202
|
const propTypes$U = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
28141
28203
|
kind: enumValue(FeedbackBlockKind),
|
|
28142
|
-
message: propTypes$
|
|
28204
|
+
message: propTypes$1M.exports.node.isRequired
|
|
28143
28205
|
});
|
|
28144
28206
|
function SpsMicroBlock(props2) {
|
|
28145
28207
|
const _a = props2, {
|
|
@@ -28232,7 +28294,7 @@ const propsDoc$R = {
|
|
|
28232
28294
|
const propTypes$T = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
28233
28295
|
kind: enumValue(ModalKind),
|
|
28234
28296
|
size: enumValue(ModalSize),
|
|
28235
|
-
title: propTypes$
|
|
28297
|
+
title: propTypes$1M.exports.string,
|
|
28236
28298
|
onClose: fun(),
|
|
28237
28299
|
focusElementOnOpen: ref()
|
|
28238
28300
|
});
|
|
@@ -28826,27 +28888,27 @@ const propsDoc$Q = {
|
|
|
28826
28888
|
};
|
|
28827
28889
|
const propTypes$S = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
28828
28890
|
action: fun(),
|
|
28829
|
-
captionKey: propTypes$
|
|
28830
|
-
debounce: propTypes$
|
|
28831
|
-
disabled: propTypes$
|
|
28832
|
-
disableSelected: propTypes$
|
|
28833
|
-
comparisonKey: propTypes$
|
|
28891
|
+
captionKey: propTypes$1M.exports.string,
|
|
28892
|
+
debounce: propTypes$1M.exports.number,
|
|
28893
|
+
disabled: propTypes$1M.exports.bool,
|
|
28894
|
+
disableSelected: propTypes$1M.exports.bool,
|
|
28895
|
+
comparisonKey: propTypes$1M.exports.string,
|
|
28834
28896
|
formControl: impl(),
|
|
28835
28897
|
formMeta: impl(),
|
|
28836
|
-
hideSelected: propTypes$
|
|
28898
|
+
hideSelected: propTypes$1M.exports.bool,
|
|
28837
28899
|
icon: enumValue(SpsIcon),
|
|
28838
28900
|
onChange: fun(),
|
|
28839
|
-
options: propTypes$
|
|
28840
|
-
propTypes$
|
|
28841
|
-
propTypes$
|
|
28901
|
+
options: propTypes$1M.exports.oneOfType([
|
|
28902
|
+
propTypes$1M.exports.array,
|
|
28903
|
+
propTypes$1M.exports.instanceOf(Promise),
|
|
28842
28904
|
fun()
|
|
28843
28905
|
]).isRequired,
|
|
28844
|
-
placeholder: propTypes$
|
|
28845
|
-
tallOptionList: propTypes$
|
|
28846
|
-
textKey: propTypes$
|
|
28847
|
-
value: propTypes$
|
|
28848
|
-
zeroState: propTypes$
|
|
28849
|
-
loading: propTypes$
|
|
28906
|
+
placeholder: propTypes$1M.exports.string,
|
|
28907
|
+
tallOptionList: propTypes$1M.exports.bool,
|
|
28908
|
+
textKey: propTypes$1M.exports.string,
|
|
28909
|
+
value: propTypes$1M.exports.any,
|
|
28910
|
+
zeroState: propTypes$1M.exports.string,
|
|
28911
|
+
loading: propTypes$1M.exports.bool
|
|
28850
28912
|
});
|
|
28851
28913
|
function SpsMultiSelect(_w) {
|
|
28852
28914
|
var _x = _w, {
|
|
@@ -29402,29 +29464,29 @@ const propsDoc$N = {
|
|
|
29402
29464
|
};
|
|
29403
29465
|
const propTypes$P = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
29404
29466
|
action: fun(),
|
|
29405
|
-
captionKey: propTypes$
|
|
29406
|
-
comparisonKey: propTypes$
|
|
29407
|
-
disabled: propTypes$
|
|
29467
|
+
captionKey: propTypes$1M.exports.string,
|
|
29468
|
+
comparisonKey: propTypes$1M.exports.string,
|
|
29469
|
+
disabled: propTypes$1M.exports.bool,
|
|
29408
29470
|
formControl: impl(),
|
|
29409
29471
|
formMeta: impl(),
|
|
29410
|
-
notClearable: propTypes$
|
|
29411
|
-
options: propTypes$
|
|
29412
|
-
propTypes$
|
|
29413
|
-
propTypes$
|
|
29472
|
+
notClearable: propTypes$1M.exports.bool,
|
|
29473
|
+
options: propTypes$1M.exports.oneOfType([
|
|
29474
|
+
propTypes$1M.exports.array,
|
|
29475
|
+
propTypes$1M.exports.instanceOf(Promise),
|
|
29414
29476
|
fun()
|
|
29415
29477
|
]).isRequired,
|
|
29416
29478
|
onChange: fun(),
|
|
29417
|
-
placeholder: propTypes$
|
|
29418
|
-
searchDebounce: propTypes$
|
|
29419
|
-
searchPlaceholder: propTypes$
|
|
29420
|
-
tallOptionList: propTypes$
|
|
29421
|
-
textKey: propTypes$
|
|
29422
|
-
valueKey: propTypes$
|
|
29423
|
-
value: propTypes$
|
|
29424
|
-
zeroState: propTypes$
|
|
29425
|
-
autoFixWidth: propTypes$
|
|
29426
|
-
loading: propTypes$
|
|
29427
|
-
filterByTextAndCaptionKey: propTypes$
|
|
29479
|
+
placeholder: propTypes$1M.exports.string,
|
|
29480
|
+
searchDebounce: propTypes$1M.exports.number,
|
|
29481
|
+
searchPlaceholder: propTypes$1M.exports.string,
|
|
29482
|
+
tallOptionList: propTypes$1M.exports.bool,
|
|
29483
|
+
textKey: propTypes$1M.exports.string,
|
|
29484
|
+
valueKey: propTypes$1M.exports.string,
|
|
29485
|
+
value: propTypes$1M.exports.any,
|
|
29486
|
+
zeroState: propTypes$1M.exports.string,
|
|
29487
|
+
autoFixWidth: propTypes$1M.exports.bool,
|
|
29488
|
+
loading: propTypes$1M.exports.bool,
|
|
29489
|
+
filterByTextAndCaptionKey: propTypes$1M.exports.bool
|
|
29428
29490
|
});
|
|
29429
29491
|
const SpsSelect = React.forwardRef((props2, ref2) => {
|
|
29430
29492
|
const _a = props2, {
|
|
@@ -29653,10 +29715,10 @@ const propsDoc$M = {
|
|
|
29653
29715
|
disabled: "boolean"
|
|
29654
29716
|
};
|
|
29655
29717
|
const propTypes$O = __spreadValues({
|
|
29656
|
-
numPages: propTypes$
|
|
29718
|
+
numPages: propTypes$1M.exports.number,
|
|
29657
29719
|
onPageChange: fun(),
|
|
29658
|
-
page: propTypes$
|
|
29659
|
-
disabled: propTypes$
|
|
29720
|
+
page: propTypes$1M.exports.number,
|
|
29721
|
+
disabled: propTypes$1M.exports.bool
|
|
29660
29722
|
}, spsGlobalPropTypes);
|
|
29661
29723
|
function SpsPageSelector(props2) {
|
|
29662
29724
|
const _a = props2, {
|
|
@@ -29763,11 +29825,11 @@ const propsDoc$L = {
|
|
|
29763
29825
|
};
|
|
29764
29826
|
const propTypes$N = __spreadValues({
|
|
29765
29827
|
onPageChange: fun().isRequired,
|
|
29766
|
-
page: propTypes$
|
|
29767
|
-
pageSize: propTypes$
|
|
29768
|
-
pageSizeOptions: propTypes$
|
|
29769
|
-
totalResults: propTypes$
|
|
29770
|
-
disabled: propTypes$
|
|
29828
|
+
page: propTypes$1M.exports.number,
|
|
29829
|
+
pageSize: propTypes$1M.exports.number,
|
|
29830
|
+
pageSizeOptions: propTypes$1M.exports.arrayOf(propTypes$1M.exports.number),
|
|
29831
|
+
totalResults: propTypes$1M.exports.number,
|
|
29832
|
+
disabled: propTypes$1M.exports.bool
|
|
29771
29833
|
}, spsGlobalPropTypes);
|
|
29772
29834
|
function SpsPagination(props2) {
|
|
29773
29835
|
const _a = props2, {
|
|
@@ -30012,14 +30074,14 @@ const propsDoc$J = {
|
|
|
30012
30074
|
tabs: "Array<string>"
|
|
30013
30075
|
};
|
|
30014
30076
|
const propTypes$M = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
30015
|
-
activeTab: propTypes$
|
|
30016
|
-
fullWidth: propTypes$
|
|
30077
|
+
activeTab: propTypes$1M.exports.string,
|
|
30078
|
+
fullWidth: propTypes$1M.exports.bool,
|
|
30017
30079
|
onTabChange: fun(),
|
|
30018
30080
|
onProductNameClick: fun(),
|
|
30019
|
-
productLogoSrc: propTypes$
|
|
30020
|
-
productName: propTypes$
|
|
30021
|
-
productNameHref: propTypes$
|
|
30022
|
-
tabs: propTypes$
|
|
30081
|
+
productLogoSrc: propTypes$1M.exports.string,
|
|
30082
|
+
productName: propTypes$1M.exports.string.isRequired,
|
|
30083
|
+
productNameHref: propTypes$1M.exports.string,
|
|
30084
|
+
tabs: propTypes$1M.exports.arrayOf(propTypes$1M.exports.string)
|
|
30023
30085
|
});
|
|
30024
30086
|
function SpsProductBar(props2) {
|
|
30025
30087
|
const _a = props2, {
|
|
@@ -30242,10 +30304,10 @@ const propsDoc$I = {
|
|
|
30242
30304
|
onClose: "() => void"
|
|
30243
30305
|
};
|
|
30244
30306
|
const propTypes$L = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
30245
|
-
percentComplete: propTypes$
|
|
30246
|
-
title: propTypes$
|
|
30247
|
-
detail: propTypes$
|
|
30248
|
-
disabled: propTypes$
|
|
30307
|
+
percentComplete: propTypes$1M.exports.number,
|
|
30308
|
+
title: propTypes$1M.exports.string,
|
|
30309
|
+
detail: propTypes$1M.exports.string,
|
|
30310
|
+
disabled: propTypes$1M.exports.bool,
|
|
30249
30311
|
onClose: fun()
|
|
30250
30312
|
});
|
|
30251
30313
|
function SpsProgressBar(props2) {
|
|
@@ -30954,13 +31016,13 @@ const propsDoc$G = {
|
|
|
30954
31016
|
tooltipsData: "TooltipsProps[]"
|
|
30955
31017
|
};
|
|
30956
31018
|
const propTypes$J = {
|
|
30957
|
-
title: propTypes$
|
|
30958
|
-
stepsCount: propTypes$
|
|
30959
|
-
completedStepsCount: propTypes$
|
|
30960
|
-
disabled: propTypes$
|
|
30961
|
-
showStepsCounter: propTypes$
|
|
30962
|
-
icons: propTypes$
|
|
30963
|
-
tooltipsData: propTypes$
|
|
31019
|
+
title: propTypes$1M.exports.string,
|
|
31020
|
+
stepsCount: propTypes$1M.exports.number,
|
|
31021
|
+
completedStepsCount: propTypes$1M.exports.number,
|
|
31022
|
+
disabled: propTypes$1M.exports.bool,
|
|
31023
|
+
showStepsCounter: propTypes$1M.exports.bool,
|
|
31024
|
+
icons: propTypes$1M.exports.arrayOf(impl()),
|
|
31025
|
+
tooltipsData: propTypes$1M.exports.arrayOf(impl())
|
|
30964
31026
|
};
|
|
30965
31027
|
function SpsSteppedProgressBar(props2) {
|
|
30966
31028
|
const {
|
|
@@ -31117,16 +31179,16 @@ const propsDoc$F = {
|
|
|
31117
31179
|
value: "any"
|
|
31118
31180
|
};
|
|
31119
31181
|
const propTypes$I = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
31120
|
-
checked: propTypes$
|
|
31121
|
-
disabled: propTypes$
|
|
31182
|
+
checked: propTypes$1M.exports.bool,
|
|
31183
|
+
disabled: propTypes$1M.exports.bool,
|
|
31122
31184
|
formControl: impl(),
|
|
31123
31185
|
formMeta: impl(),
|
|
31124
|
-
inline: propTypes$
|
|
31125
|
-
label: propTypes$
|
|
31126
|
-
name: propTypes$
|
|
31186
|
+
inline: propTypes$1M.exports.bool,
|
|
31187
|
+
label: propTypes$1M.exports.string,
|
|
31188
|
+
name: propTypes$1M.exports.string.isRequired,
|
|
31127
31189
|
onChange: fun(),
|
|
31128
31190
|
ref: ref(),
|
|
31129
|
-
value: propTypes$
|
|
31191
|
+
value: propTypes$1M.exports.any
|
|
31130
31192
|
});
|
|
31131
31193
|
function SpsRadioButton(_y) {
|
|
31132
31194
|
var _z = _y, {
|
|
@@ -31291,7 +31353,7 @@ const propsDoc$E = {
|
|
|
31291
31353
|
maxHeight: "string"
|
|
31292
31354
|
};
|
|
31293
31355
|
const propTypes$H = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
31294
|
-
maxHeight: propTypes$
|
|
31356
|
+
maxHeight: propTypes$1M.exports.string
|
|
31295
31357
|
});
|
|
31296
31358
|
function SpsScrollableContainer(props2) {
|
|
31297
31359
|
const {
|
|
@@ -31391,8 +31453,8 @@ const propsDoc$D = {
|
|
|
31391
31453
|
onClear: "() => void"
|
|
31392
31454
|
};
|
|
31393
31455
|
const propTypes$G = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
31394
|
-
resultsCount: propTypes$
|
|
31395
|
-
totalResults: propTypes$
|
|
31456
|
+
resultsCount: propTypes$1M.exports.number,
|
|
31457
|
+
totalResults: propTypes$1M.exports.number,
|
|
31396
31458
|
onClear: fun()
|
|
31397
31459
|
});
|
|
31398
31460
|
function SpsSearchResultsBar(props2) {
|
|
@@ -32252,12 +32314,12 @@ const propsDoc$C = {
|
|
|
32252
32314
|
widthRem: "number"
|
|
32253
32315
|
};
|
|
32254
32316
|
const propTypes$F = __spreadValues({
|
|
32255
|
-
sortKey: propTypes$
|
|
32256
|
-
sortDisabled: propTypes$
|
|
32257
|
-
sort: propTypes$
|
|
32317
|
+
sortKey: propTypes$1M.exports.string,
|
|
32318
|
+
sortDisabled: propTypes$1M.exports.bool,
|
|
32319
|
+
sort: propTypes$1M.exports.arrayOf(impl()),
|
|
32258
32320
|
onSortChange: fun(),
|
|
32259
|
-
widthPx: propTypes$
|
|
32260
|
-
widthRem: propTypes$
|
|
32321
|
+
widthPx: propTypes$1M.exports.number,
|
|
32322
|
+
widthRem: propTypes$1M.exports.number
|
|
32261
32323
|
}, spsGlobalPropTypes);
|
|
32262
32324
|
function SpsSortingHeaderCell(_A) {
|
|
32263
32325
|
var _B = _A, {
|
|
@@ -32327,7 +32389,7 @@ const propsDoc$B = {
|
|
|
32327
32389
|
onSortChange: "SortChangeHandler"
|
|
32328
32390
|
};
|
|
32329
32391
|
const propTypes$E = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
32330
|
-
sort: propTypes$
|
|
32392
|
+
sort: propTypes$1M.exports.arrayOf(impl()),
|
|
32331
32393
|
onSortChange: fun()
|
|
32332
32394
|
});
|
|
32333
32395
|
function SpsSortingHeader(_C) {
|
|
@@ -32405,12 +32467,12 @@ const propsDoc$A = {
|
|
|
32405
32467
|
options: "Array<SpsActionMethod | [SpsActionDescriptor, () => void]>"
|
|
32406
32468
|
};
|
|
32407
32469
|
const propTypes$D = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
32408
|
-
disabled: propTypes$
|
|
32409
|
-
href: propTypes$
|
|
32410
|
-
label: propTypes$
|
|
32470
|
+
disabled: propTypes$1M.exports.bool,
|
|
32471
|
+
href: propTypes$1M.exports.string,
|
|
32472
|
+
label: propTypes$1M.exports.string,
|
|
32411
32473
|
icon: enumValue(SpsIcon),
|
|
32412
32474
|
kind: enumValue(StdButtonKind),
|
|
32413
|
-
options: propTypes$
|
|
32475
|
+
options: propTypes$1M.exports.arrayOf(propTypes$1M.exports.oneOfType([propTypes$1M.exports.func, propTypes$1M.exports.any]))
|
|
32414
32476
|
});
|
|
32415
32477
|
function SpsSplitButton(props2) {
|
|
32416
32478
|
const _a = props2, {
|
|
@@ -32567,7 +32629,7 @@ const propsDoc$z = {
|
|
|
32567
32629
|
channelId: { type: "string", required: true }
|
|
32568
32630
|
};
|
|
32569
32631
|
const propTypes$C = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
32570
|
-
channelId: propTypes$
|
|
32632
|
+
channelId: propTypes$1M.exports.string.isRequired
|
|
32571
32633
|
});
|
|
32572
32634
|
function SpsSlackLink(props2) {
|
|
32573
32635
|
const _a = props2, {
|
|
@@ -32649,8 +32711,8 @@ const propsDoc$x = {
|
|
|
32649
32711
|
onToggle: "(isExpanded: boolean) => void"
|
|
32650
32712
|
};
|
|
32651
32713
|
const propTypes$A = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
32652
|
-
expanded: propTypes$
|
|
32653
|
-
selected: propTypes$
|
|
32714
|
+
expanded: propTypes$1M.exports.bool,
|
|
32715
|
+
selected: propTypes$1M.exports.bool,
|
|
32654
32716
|
onToggle: fun()
|
|
32655
32717
|
});
|
|
32656
32718
|
function SpsSummaryListRow(props2) {
|
|
@@ -32732,10 +32794,10 @@ const propsDoc$w = {
|
|
|
32732
32794
|
width: "string"
|
|
32733
32795
|
};
|
|
32734
32796
|
const propTypes$z = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
32735
|
-
borderless: propTypes$
|
|
32736
|
-
lean: propTypes$
|
|
32737
|
-
leaner: propTypes$
|
|
32738
|
-
width: propTypes$
|
|
32797
|
+
borderless: propTypes$1M.exports.bool,
|
|
32798
|
+
lean: propTypes$1M.exports.bool,
|
|
32799
|
+
leaner: propTypes$1M.exports.bool,
|
|
32800
|
+
width: propTypes$1M.exports.string
|
|
32739
32801
|
});
|
|
32740
32802
|
function SpsSummaryListColumn(props2) {
|
|
32741
32803
|
const _a = props2, {
|
|
@@ -33068,17 +33130,17 @@ const props = {
|
|
|
33068
33130
|
suppressTooltips: "boolean"
|
|
33069
33131
|
};
|
|
33070
33132
|
const propTypes$y = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
33071
|
-
tasks: propTypes$
|
|
33133
|
+
tasks: propTypes$1M.exports.arrayOf(propTypes$1M.exports.any),
|
|
33072
33134
|
taskQueuePosition: enumValue(Position),
|
|
33073
|
-
notificationText: propTypes$
|
|
33074
|
-
tooltipConfig: propTypes$
|
|
33135
|
+
notificationText: propTypes$1M.exports.string,
|
|
33136
|
+
tooltipConfig: propTypes$1M.exports.shape({
|
|
33075
33137
|
position: enumValue(Position),
|
|
33076
33138
|
kind: enumValue(TooltipKind)
|
|
33077
33139
|
}),
|
|
33078
33140
|
onClose: fun(),
|
|
33079
33141
|
onOpen: fun(),
|
|
33080
33142
|
onClearCompleted: fun(),
|
|
33081
|
-
suppressTooltips: propTypes$
|
|
33143
|
+
suppressTooltips: propTypes$1M.exports.bool
|
|
33082
33144
|
});
|
|
33083
33145
|
function SpsTaskQueue(_E) {
|
|
33084
33146
|
var _F = _E, {
|
|
@@ -33614,14 +33676,14 @@ const propsDoc$v = {
|
|
|
33614
33676
|
value: "string"
|
|
33615
33677
|
};
|
|
33616
33678
|
const propTypes$x = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
33617
|
-
disabled: propTypes$
|
|
33679
|
+
disabled: propTypes$1M.exports.bool,
|
|
33618
33680
|
formControl: impl(),
|
|
33619
33681
|
formMeta: impl(),
|
|
33620
33682
|
icon: enumValue(SpsIcon),
|
|
33621
|
-
name: propTypes$
|
|
33683
|
+
name: propTypes$1M.exports.string,
|
|
33622
33684
|
onChange: fun(),
|
|
33623
|
-
placeholder: propTypes$
|
|
33624
|
-
value: propTypes$
|
|
33685
|
+
placeholder: propTypes$1M.exports.string,
|
|
33686
|
+
value: propTypes$1M.exports.string
|
|
33625
33687
|
});
|
|
33626
33688
|
const SpsTextInput = React.forwardRef((_G, ref2) => {
|
|
33627
33689
|
var _H = _G, {
|
|
@@ -33810,15 +33872,15 @@ const propsDoc$u = {
|
|
|
33810
33872
|
value: "string"
|
|
33811
33873
|
};
|
|
33812
33874
|
const propTypes$w = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
33813
|
-
disabled: propTypes$
|
|
33875
|
+
disabled: propTypes$1M.exports.bool,
|
|
33814
33876
|
formControl: impl(),
|
|
33815
33877
|
formMeta: impl(),
|
|
33816
|
-
name: propTypes$
|
|
33878
|
+
name: propTypes$1M.exports.string,
|
|
33817
33879
|
onChange: fun(),
|
|
33818
|
-
placeholder: propTypes$
|
|
33880
|
+
placeholder: propTypes$1M.exports.string,
|
|
33819
33881
|
ref: ref(),
|
|
33820
|
-
rows: propTypes$
|
|
33821
|
-
value: propTypes$
|
|
33882
|
+
rows: propTypes$1M.exports.number,
|
|
33883
|
+
value: propTypes$1M.exports.string
|
|
33822
33884
|
});
|
|
33823
33885
|
function SpsTextarea(_I) {
|
|
33824
33886
|
var _J = _I, {
|
|
@@ -34012,12 +34074,12 @@ const propsDoc$t = {
|
|
|
34012
34074
|
warning: "boolean"
|
|
34013
34075
|
};
|
|
34014
34076
|
const propTypes$v = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
34015
|
-
href: propTypes$
|
|
34016
|
-
target: propTypes$
|
|
34077
|
+
href: propTypes$1M.exports.string,
|
|
34078
|
+
target: propTypes$1M.exports.string,
|
|
34017
34079
|
icon: nodeOrRenderFn.isRequired,
|
|
34018
|
-
error: propTypes$
|
|
34019
|
-
title: propTypes$
|
|
34020
|
-
warning: propTypes$
|
|
34080
|
+
error: propTypes$1M.exports.bool,
|
|
34081
|
+
title: propTypes$1M.exports.string.isRequired,
|
|
34082
|
+
warning: propTypes$1M.exports.bool
|
|
34021
34083
|
});
|
|
34022
34084
|
function SpsTile(props2) {
|
|
34023
34085
|
const _a = props2, {
|
|
@@ -34336,10 +34398,10 @@ const propsDoc$r = {
|
|
|
34336
34398
|
active: "boolean"
|
|
34337
34399
|
};
|
|
34338
34400
|
const propTypes$t = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
34339
|
-
value: propTypes$
|
|
34340
|
-
title: propTypes$
|
|
34401
|
+
value: propTypes$1M.exports.number.isRequired,
|
|
34402
|
+
title: propTypes$1M.exports.string.isRequired,
|
|
34341
34403
|
kind: enumValue(SpsFilterTileKind),
|
|
34342
|
-
active: propTypes$
|
|
34404
|
+
active: propTypes$1M.exports.bool
|
|
34343
34405
|
});
|
|
34344
34406
|
function SpsFilterTile(props2) {
|
|
34345
34407
|
const _a = props2, {
|
|
@@ -34477,18 +34539,18 @@ const propsDoc$p = {
|
|
|
34477
34539
|
onChange: "(isActive: boolean) => void"
|
|
34478
34540
|
};
|
|
34479
34541
|
const propTypes$r = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
34480
|
-
active: propTypes$
|
|
34481
|
-
activeDescription: deprecated(propTypes$
|
|
34482
|
-
activeLabel: deprecated(propTypes$
|
|
34483
|
-
description: propTypes$
|
|
34484
|
-
disabled: propTypes$
|
|
34542
|
+
active: propTypes$1M.exports.bool,
|
|
34543
|
+
activeDescription: deprecated(propTypes$1M.exports.string),
|
|
34544
|
+
activeLabel: deprecated(propTypes$1M.exports.string),
|
|
34545
|
+
description: propTypes$1M.exports.string,
|
|
34546
|
+
disabled: propTypes$1M.exports.bool,
|
|
34485
34547
|
formControl: impl(),
|
|
34486
34548
|
formMeta: impl(),
|
|
34487
|
-
id: propTypes$
|
|
34488
|
-
inactiveDescription: deprecated(propTypes$
|
|
34489
|
-
inactiveLabel: deprecated(propTypes$
|
|
34490
|
-
label: propTypes$
|
|
34491
|
-
large: propTypes$
|
|
34549
|
+
id: propTypes$1M.exports.string,
|
|
34550
|
+
inactiveDescription: deprecated(propTypes$1M.exports.string),
|
|
34551
|
+
inactiveLabel: deprecated(propTypes$1M.exports.string),
|
|
34552
|
+
label: propTypes$1M.exports.string,
|
|
34553
|
+
large: propTypes$1M.exports.bool,
|
|
34492
34554
|
onChange: fun(),
|
|
34493
34555
|
ref: ref()
|
|
34494
34556
|
});
|
|
@@ -34673,7 +34735,7 @@ const propsDoc$o = {
|
|
|
34673
34735
|
icon: "SpsIcon"
|
|
34674
34736
|
};
|
|
34675
34737
|
const propTypes$q = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
34676
|
-
heading: propTypes$
|
|
34738
|
+
heading: propTypes$1M.exports.string,
|
|
34677
34739
|
icon: enumValue(SpsIcon)
|
|
34678
34740
|
});
|
|
34679
34741
|
function SpsWorkflow(props2) {
|
|
@@ -34725,7 +34787,7 @@ const propsDoc$n = {
|
|
|
34725
34787
|
progress: "number"
|
|
34726
34788
|
};
|
|
34727
34789
|
const propTypes$p = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
34728
|
-
progress: propTypes$
|
|
34790
|
+
progress: propTypes$1M.exports.number,
|
|
34729
34791
|
size: enumValue(RingSize)
|
|
34730
34792
|
});
|
|
34731
34793
|
function SpsProgressRing({
|
|
@@ -34770,7 +34832,7 @@ const propsDoc$m = {
|
|
|
34770
34832
|
phases: "WizardPhase[]"
|
|
34771
34833
|
};
|
|
34772
34834
|
const propTypes$o = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
34773
|
-
phases: propTypes$
|
|
34835
|
+
phases: propTypes$1M.exports.arrayOf(impl())
|
|
34774
34836
|
});
|
|
34775
34837
|
const CSS_BLOCK$2 = "sps-wizard-sidebar";
|
|
34776
34838
|
function SpsWizardSidebar({
|
|
@@ -34821,10 +34883,10 @@ const propsDoc$l = {
|
|
|
34821
34883
|
};
|
|
34822
34884
|
const propTypes$n = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
34823
34885
|
condition: enumValue(WizardSubstepConditions).isRequired,
|
|
34824
|
-
display: propTypes$
|
|
34825
|
-
orderPosition: propTypes$
|
|
34826
|
-
propTypes$
|
|
34827
|
-
propTypes$
|
|
34886
|
+
display: propTypes$1M.exports.string.isRequired,
|
|
34887
|
+
orderPosition: propTypes$1M.exports.oneOfType([
|
|
34888
|
+
propTypes$1M.exports.string,
|
|
34889
|
+
propTypes$1M.exports.number
|
|
34828
34890
|
]).isRequired
|
|
34829
34891
|
});
|
|
34830
34892
|
function SpsWizardSubstep(props2) {
|
|
@@ -35025,7 +35087,7 @@ const propsDoc$i = {
|
|
|
35025
35087
|
};
|
|
35026
35088
|
const propTypes$k = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
35027
35089
|
icon: enumValue(SpsIcon).isRequired,
|
|
35028
|
-
title: propTypes$
|
|
35090
|
+
title: propTypes$1M.exports.string.isRequired
|
|
35029
35091
|
});
|
|
35030
35092
|
function SpsWorkflowStep(props2) {
|
|
35031
35093
|
const _a = props2, {
|
|
@@ -35136,9 +35198,9 @@ const propsDoc$h = {
|
|
|
35136
35198
|
subHeading: "string"
|
|
35137
35199
|
};
|
|
35138
35200
|
const propTypes$j = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
35139
|
-
artwork: propTypes$
|
|
35140
|
-
heading: propTypes$
|
|
35141
|
-
subHeading: propTypes$
|
|
35201
|
+
artwork: propTypes$1M.exports.string.isRequired,
|
|
35202
|
+
heading: propTypes$1M.exports.string.isRequired,
|
|
35203
|
+
subHeading: propTypes$1M.exports.string
|
|
35142
35204
|
});
|
|
35143
35205
|
function SpsZeroState(props2) {
|
|
35144
35206
|
const _a = props2, {
|
|
@@ -35414,10 +35476,10 @@ const propsDoc$e = {
|
|
|
35414
35476
|
onCollapse: "() => void"
|
|
35415
35477
|
};
|
|
35416
35478
|
const propTypes$g = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
35417
|
-
title: propTypes$
|
|
35418
|
-
expanded: propTypes$
|
|
35419
|
-
heightPx: propTypes$
|
|
35420
|
-
heightRem: propTypes$
|
|
35479
|
+
title: propTypes$1M.exports.string,
|
|
35480
|
+
expanded: propTypes$1M.exports.bool,
|
|
35481
|
+
heightPx: propTypes$1M.exports.number,
|
|
35482
|
+
heightRem: propTypes$1M.exports.number,
|
|
35421
35483
|
onExpand: fun(),
|
|
35422
35484
|
onCollapse: fun()
|
|
35423
35485
|
});
|
|
@@ -35843,9 +35905,9 @@ const propsDoc$c = {
|
|
|
35843
35905
|
onFilterChange: "ChangeEventHandler<HTMLInputElement>"
|
|
35844
35906
|
};
|
|
35845
35907
|
const propTypes$e = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
35846
|
-
value: propTypes$
|
|
35847
|
-
placeholder: propTypes$
|
|
35848
|
-
formMeta: propTypes$
|
|
35908
|
+
value: propTypes$1M.exports.string,
|
|
35909
|
+
placeholder: propTypes$1M.exports.string,
|
|
35910
|
+
formMeta: propTypes$1M.exports.oneOfType([
|
|
35849
35911
|
impl(),
|
|
35850
35912
|
impl()
|
|
35851
35913
|
]),
|
|
@@ -35885,7 +35947,7 @@ const propsDoc$b = {
|
|
|
35885
35947
|
showCondition: "boolean"
|
|
35886
35948
|
};
|
|
35887
35949
|
const propTypes$d = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
35888
|
-
showCondition: propTypes$
|
|
35950
|
+
showCondition: propTypes$1M.exports.bool
|
|
35889
35951
|
});
|
|
35890
35952
|
function SpsConditionalField(_S) {
|
|
35891
35953
|
var _T = _S, {
|
|
@@ -36217,7 +36279,11 @@ const MANIFEST = {
|
|
|
36217
36279
|
},
|
|
36218
36280
|
"List Toolbar": {
|
|
36219
36281
|
description: () => /* @__PURE__ */ React.createElement("p", null, "The List Toolbar provides the ability to interact with elements in a list or table. It can contain elements to search, filter, sort, or perform other actions."),
|
|
36220
|
-
components: [
|
|
36282
|
+
components: [
|
|
36283
|
+
SpsListToolbar,
|
|
36284
|
+
SpsListToolbarSearch,
|
|
36285
|
+
SpsListToolbarSearchInfo
|
|
36286
|
+
],
|
|
36221
36287
|
examples: SpsListToolbarExamples
|
|
36222
36288
|
},
|
|
36223
36289
|
"Micro Block": {
|
|
@@ -36408,7 +36474,7 @@ const propTypes$c = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
|
36408
36474
|
minDate: impl(),
|
|
36409
36475
|
onNewSelection: fun().isRequired,
|
|
36410
36476
|
selectedDate: impl(),
|
|
36411
|
-
selectedRange: propTypes$
|
|
36477
|
+
selectedRange: propTypes$1M.exports.arrayOf(impl())
|
|
36412
36478
|
});
|
|
36413
36479
|
const CSS_ELEMENT$1 = "sps-datepicker__calendar";
|
|
36414
36480
|
function determineViewMonth({
|
|
@@ -36528,7 +36594,7 @@ Object.assign(SpsDatepickerCalendar, {
|
|
|
36528
36594
|
const CSS_ELEMENT = "sps-datepicker__popup";
|
|
36529
36595
|
const propTypes$b = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
36530
36596
|
attachTo: ref().isRequired,
|
|
36531
|
-
isOpen: propTypes$
|
|
36597
|
+
isOpen: propTypes$1M.exports.bool.isRequired
|
|
36532
36598
|
});
|
|
36533
36599
|
const SpsDatepickerPopup = React.forwardRef((_U, ref2) => {
|
|
36534
36600
|
var _V = _U, {
|
|
@@ -36566,7 +36632,7 @@ const propsDoc$a = {
|
|
|
36566
36632
|
value: "SimpleDate"
|
|
36567
36633
|
};
|
|
36568
36634
|
const propTypes$a = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
36569
|
-
disabled: propTypes$
|
|
36635
|
+
disabled: propTypes$1M.exports.bool,
|
|
36570
36636
|
formMeta: impl(),
|
|
36571
36637
|
maxDate: impl(),
|
|
36572
36638
|
minDate: impl(),
|
|
@@ -36688,12 +36754,12 @@ const propsDoc$9 = {
|
|
|
36688
36754
|
value: "SimpleDateRange | DatePreset"
|
|
36689
36755
|
};
|
|
36690
36756
|
const propTypes$9 = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
36691
|
-
disabled: propTypes$
|
|
36757
|
+
disabled: propTypes$1M.exports.bool,
|
|
36692
36758
|
formMeta: impl(),
|
|
36693
36759
|
maxDate: impl(),
|
|
36694
36760
|
minDate: impl(),
|
|
36695
36761
|
onChange: fun(),
|
|
36696
|
-
presets: propTypes$
|
|
36762
|
+
presets: propTypes$1M.exports.arrayOf(impl())
|
|
36697
36763
|
});
|
|
36698
36764
|
const CSS_BLOCK = "sps-datepicker";
|
|
36699
36765
|
const DEFAULT_PRESETS = [
|
|
@@ -36898,12 +36964,12 @@ const propsDoc$8 = {
|
|
|
36898
36964
|
value: "number"
|
|
36899
36965
|
};
|
|
36900
36966
|
const propTypes$8 = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
36901
|
-
disabled: propTypes$
|
|
36967
|
+
disabled: propTypes$1M.exports.bool,
|
|
36902
36968
|
formMeta: impl(),
|
|
36903
|
-
name: propTypes$
|
|
36969
|
+
name: propTypes$1M.exports.string,
|
|
36904
36970
|
onChange: fun(),
|
|
36905
36971
|
ref: ref(),
|
|
36906
|
-
value: propTypes$
|
|
36972
|
+
value: propTypes$1M.exports.number
|
|
36907
36973
|
});
|
|
36908
36974
|
function strToDollars(str) {
|
|
36909
36975
|
return str ? Number.parseInt(str.replace(/[^\d]/g, ""), 10) / 100 : null;
|
|
@@ -37078,10 +37144,10 @@ const propsDoc$7 = {
|
|
|
37078
37144
|
};
|
|
37079
37145
|
const propTypes$7 = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
37080
37146
|
color: enumValue(TagKind),
|
|
37081
|
-
href: propTypes$
|
|
37147
|
+
href: propTypes$1M.exports.string,
|
|
37082
37148
|
icon: enumValue(SpsIcon),
|
|
37083
|
-
tagKey: propTypes$
|
|
37084
|
-
value: propTypes$
|
|
37149
|
+
tagKey: propTypes$1M.exports.string.isRequired,
|
|
37150
|
+
value: propTypes$1M.exports.string.isRequired
|
|
37085
37151
|
});
|
|
37086
37152
|
function SpsKeyValueTag(props2) {
|
|
37087
37153
|
const _a = props2, {
|
|
@@ -37174,8 +37240,8 @@ const propsDoc$6 = {
|
|
|
37174
37240
|
header: "string | () => string"
|
|
37175
37241
|
};
|
|
37176
37242
|
const propTypes$6 = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
37177
|
-
header: propTypes$
|
|
37178
|
-
propTypes$
|
|
37243
|
+
header: propTypes$1M.exports.oneOfType([
|
|
37244
|
+
propTypes$1M.exports.string,
|
|
37179
37245
|
fun()
|
|
37180
37246
|
])
|
|
37181
37247
|
});
|
|
@@ -37207,8 +37273,8 @@ const propsDoc$5 = {
|
|
|
37207
37273
|
backdrop: "string"
|
|
37208
37274
|
};
|
|
37209
37275
|
const propTypes$5 = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
37210
|
-
onOverlayClick: propTypes$
|
|
37211
|
-
backdrop: propTypes$
|
|
37276
|
+
onOverlayClick: propTypes$1M.exports.func,
|
|
37277
|
+
backdrop: propTypes$1M.exports.string
|
|
37212
37278
|
});
|
|
37213
37279
|
function SpsModalOverlay(props2) {
|
|
37214
37280
|
const _a = props2, {
|
|
@@ -37278,12 +37344,12 @@ const propsDoc$3 = {
|
|
|
37278
37344
|
closeModal: "() => void"
|
|
37279
37345
|
};
|
|
37280
37346
|
const propTypes$3 = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
37281
|
-
handleAsync: propTypes$
|
|
37282
|
-
turnAsyncOn: propTypes$
|
|
37283
|
-
turnAsyncOff: propTypes$
|
|
37284
|
-
isAsyncOn: propTypes$
|
|
37347
|
+
handleAsync: propTypes$1M.exports.shape({
|
|
37348
|
+
turnAsyncOn: propTypes$1M.exports.func,
|
|
37349
|
+
turnAsyncOff: propTypes$1M.exports.func,
|
|
37350
|
+
isAsyncOn: propTypes$1M.exports.bool
|
|
37285
37351
|
}),
|
|
37286
|
-
closeModal: propTypes$
|
|
37352
|
+
closeModal: propTypes$1M.exports.func
|
|
37287
37353
|
});
|
|
37288
37354
|
function SpsModalFooter(props2) {
|
|
37289
37355
|
const {
|
|
@@ -37325,10 +37391,10 @@ const propsDoc$2 = {
|
|
|
37325
37391
|
const propTypes$2 = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
37326
37392
|
kind: enumValue(ButtonKind),
|
|
37327
37393
|
closeModal: fun(),
|
|
37328
|
-
handleAsync: propTypes$
|
|
37329
|
-
turnAsyncOn: propTypes$
|
|
37330
|
-
turnAsyncOff: propTypes$
|
|
37331
|
-
isAsyncOn: propTypes$
|
|
37394
|
+
handleAsync: propTypes$1M.exports.shape({
|
|
37395
|
+
turnAsyncOn: propTypes$1M.exports.func,
|
|
37396
|
+
turnAsyncOff: propTypes$1M.exports.func,
|
|
37397
|
+
isAsyncOn: propTypes$1M.exports.bool
|
|
37332
37398
|
})
|
|
37333
37399
|
});
|
|
37334
37400
|
function SpsModalAction(props2) {
|
|
@@ -37383,18 +37449,18 @@ const propsDoc$1 = {
|
|
|
37383
37449
|
onClose: "Function"
|
|
37384
37450
|
};
|
|
37385
37451
|
const propTypes$1 = __spreadProps(__spreadValues({}, spsGlobalPropTypes), {
|
|
37386
|
-
kind: propTypes$
|
|
37387
|
-
id: propTypes$
|
|
37388
|
-
isOpen: propTypes$
|
|
37389
|
-
header: propTypes$
|
|
37390
|
-
propTypes$
|
|
37452
|
+
kind: propTypes$1M.exports.string,
|
|
37453
|
+
id: propTypes$1M.exports.string,
|
|
37454
|
+
isOpen: propTypes$1M.exports.bool,
|
|
37455
|
+
header: propTypes$1M.exports.oneOfType([
|
|
37456
|
+
propTypes$1M.exports.string,
|
|
37391
37457
|
fun()
|
|
37392
37458
|
]),
|
|
37393
|
-
onClose: propTypes$
|
|
37394
|
-
onOpen: propTypes$
|
|
37395
|
-
size: propTypes$
|
|
37396
|
-
backdrop: propTypes$
|
|
37397
|
-
actionRequired: propTypes$
|
|
37459
|
+
onClose: propTypes$1M.exports.func,
|
|
37460
|
+
onOpen: propTypes$1M.exports.func,
|
|
37461
|
+
size: propTypes$1M.exports.string,
|
|
37462
|
+
backdrop: propTypes$1M.exports.string,
|
|
37463
|
+
actionRequired: propTypes$1M.exports.bool
|
|
37398
37464
|
});
|
|
37399
37465
|
function SpsModal(modalProps) {
|
|
37400
37466
|
let lastFocusable;
|
|
@@ -37648,4 +37714,4 @@ Object.assign(SpsVr, {
|
|
|
37648
37714
|
propTypes,
|
|
37649
37715
|
displayName: "SpsDescriptionListTerm / SpsDt"
|
|
37650
37716
|
});
|
|
37651
|
-
export { AsTypingErrorKeys, ContentOrderExample, FauxChangeEvent, I18nContext, MANIFEST, OnBlurErrorKeys, PortalContext, SimpleDateUtils, SpsAddRemoveFormRowExamples, SpsAdvancedSearch, SpsAdvancedSearchExamples, SpsAutocomplete, SpsAutocompleteExamples, SpsButton, SpsButtonExamples, SpsButtonGroup, SpsCard, SpsCardExamples, SpsCardTabbedPane, SpsCardV2, SpsCardV2Footer, SpsCardV2Header, SpsCardV2Title, SpsCheckbox, SpsCheckboxDropdown, SpsCheckboxExamples, SpsClickableTag, SpsClickableTagExamples, SpsColumnChooser, SpsColumnChooserColumn, SpsColumnChooserExamples, SpsConditionalField, SpsConditionalFieldExamples, SpsContentRow, SpsContentRowCol, SpsContentRowExamples, SpsContentRowExpansion, SpsCurrencyInput, SpsCurrencyInputExamples, SpsDateRangePicker, SpsDateRangePickerExamples, SpsDateRangePickerV2, SpsDateTime, SpsDatepicker, SpsDatepickerExamples, SpsDatepickerV2, SpsDatetimeExamples, SpsDd, SpsDescriptionList, SpsDescriptionListDefinition, SpsDescriptionListExamples, SpsDescriptionListTerm, SpsDl, SpsDropdown, SpsDropdownExamples, SpsDt, SpsFeedbackBlock, SpsFeedbackBlockExamples, SpsFieldset, SpsFieldsetExamples, SpsFilterPanel, SpsFilterPanelCap, SpsFilterPanelExamples, SpsFilterPanelFilterBox, SpsFilterPanelSection, SpsFilterTile, SpsFilterTileList, SpsFilterTileListExamples, SpsFocusedTask, SpsFocusedTaskActions, SpsFocusedTaskExamples, SpsForm, SpsFormArrayMeta, SpsFormComponentWrapper, SpsFormExamples, SpsFormFieldMeta, SpsFormGroupMeta, SpsFormMetaBase, SpsFormSetMeta, SpsGrowler, SpsGrowlerExamples, SpsI, SpsIconButtonPanel, SpsIncrementor, SpsIncrementorExamples, SpsInputGroup, SpsInsightTile, SpsInsights, SpsKeyValueList, SpsKeyValueListExamples, SpsKeyValueListItem, SpsKeyValueTag, SpsKeyValueTagExamples, SpsLabel, SpsLabelExamples, SpsListActionBar, SpsListActionBarExamples, SpsListToolbar, SpsListToolbarExamples, SpsListToolbarSearch, SpsMicroBlock, SpsMicroBlockExamples, SpsMicroZeroState, SpsModal, SpsModalAction, SpsModalBody, SpsModalExamples, SpsModalFooter, SpsModalHeader, SpsModalOverlay, SpsModalV2, SpsModalV2Footer, SpsMultiSelect, SpsMultiSelectExamples, SpsPageSelector, SpsPageSubtitle, SpsPageTitle, SpsPageTitleExamples, SpsPagination, SpsPaginationExamples, SpsProductBar, SpsProductBarExamples, SpsProductBarTab, SpsProgressBar, SpsProgressBarExamples, SpsProgressRing, SpsRadioButton, SpsRadioButtonExamples, SpsScrollableContainer, SpsScrollableContainerExamples, SpsSearchResultsBar, SpsSearchResultsBarExamples, SpsSelect, SpsSelectExamples, SpsSideNav, SpsSideNavExamples, SpsSlackLink, SpsSlackLinkExamples, SpsSortingHeader, SpsSortingHeaderCell, SpsSortingHeaderExamples, SpsSpinner, SpsSpinnerExamples, SpsSplitButton, SpsSplitButtonExamples, SpsSteppedProgressBar, SpsSteppedProgressBarExamples, SpsSummaryListColumn, SpsSummaryListExamples, SpsSummaryListExpansion, SpsSummaryListRow, SpsTab, SpsTabPanel, SpsTable, SpsTableBody, SpsTableCell, SpsTableExamples, SpsTableHead, SpsTableHeader, SpsTableRow, SpsTabsV2, SpsTag, SpsTagExamples, SpsTaskQueue, SpsTaskQueueExamples, SpsTbody, SpsTd, SpsTextInput, SpsTextInputExamples, SpsTextarea, SpsTextareaExamples, SpsTh, SpsThead, SpsTile, SpsTileList, SpsTileListExamples, SpsToggle, SpsToggleExamples, SpsTooltip, SpsTooltipExamples, SpsTooltipTitle, SpsTr, SpsValidators, SpsVerticalRule, SpsVr, SpsWf, SpsWfDoc, SpsWfDs, SpsWfStep, SpsWizardExamples, SpsWizardSidebar, SpsWizardSubstep, SpsWorkflow, SpsWorkflowDocument, SpsWorkflowDocumentStatus, SpsWorkflowExamples, SpsWorkflowStep, SpsZeroState, SpsZeroStateExamples, TooltipVisibility, contentOf, date, dateConstraint, dateRange, findParentBranches, flipPosition, formArray, formControl, formGroup, getMember, getPosition, selectChildren, toggleTooltipState, useCheckDeprecatedProps, useDidUpdateEffect, useDocumentEventListener, useElementId, useForm, useGrowlers, useInputPopup, usePatchReducer, usePortal, useServerSideValidation, useSpsAction, useSpsForm, validate, weekOfMonth };
|
|
37717
|
+
export { AsTypingErrorKeys, ContentOrderExample, FauxChangeEvent, I18nContext, MANIFEST, OnBlurErrorKeys, PortalContext, SimpleDateUtils, SpsAddRemoveFormRowExamples, SpsAdvancedSearch, SpsAdvancedSearchExamples, SpsAutocomplete, SpsAutocompleteExamples, SpsButton, SpsButtonExamples, SpsButtonGroup, SpsCard, SpsCardExamples, SpsCardTabbedPane, SpsCardV2, SpsCardV2Footer, SpsCardV2Header, SpsCardV2Title, SpsCheckbox, SpsCheckboxDropdown, SpsCheckboxExamples, SpsClickableTag, SpsClickableTagExamples, SpsColumnChooser, SpsColumnChooserColumn, SpsColumnChooserExamples, SpsConditionalField, SpsConditionalFieldExamples, SpsContentRow, SpsContentRowCol, SpsContentRowExamples, SpsContentRowExpansion, SpsCurrencyInput, SpsCurrencyInputExamples, SpsDateRangePicker, SpsDateRangePickerExamples, SpsDateRangePickerV2, SpsDateTime, SpsDatepicker, SpsDatepickerExamples, SpsDatepickerV2, SpsDatetimeExamples, SpsDd, SpsDescriptionList, SpsDescriptionListDefinition, SpsDescriptionListExamples, SpsDescriptionListTerm, SpsDl, SpsDropdown, SpsDropdownExamples, SpsDt, SpsFeedbackBlock, SpsFeedbackBlockExamples, SpsFieldset, SpsFieldsetExamples, SpsFilterPanel, SpsFilterPanelCap, SpsFilterPanelExamples, SpsFilterPanelFilterBox, SpsFilterPanelSection, SpsFilterTile, SpsFilterTileList, SpsFilterTileListExamples, SpsFocusedTask, SpsFocusedTaskActions, SpsFocusedTaskExamples, SpsForm, SpsFormArrayMeta, SpsFormComponentWrapper, SpsFormExamples, SpsFormFieldMeta, SpsFormGroupMeta, SpsFormMetaBase, SpsFormSetMeta, SpsGrowler, SpsGrowlerExamples, SpsI, SpsIconButtonPanel, SpsIncrementor, SpsIncrementorExamples, SpsInputGroup, SpsInsightTile, SpsInsights, SpsKeyValueList, SpsKeyValueListExamples, SpsKeyValueListItem, SpsKeyValueTag, SpsKeyValueTagExamples, SpsLabel, SpsLabelExamples, SpsListActionBar, SpsListActionBarExamples, SpsListToolbar, SpsListToolbarExamples, SpsListToolbarSearch, SpsListToolbarSearchInfo, SpsMicroBlock, SpsMicroBlockExamples, SpsMicroZeroState, SpsModal, SpsModalAction, SpsModalBody, SpsModalExamples, SpsModalFooter, SpsModalHeader, SpsModalOverlay, SpsModalV2, SpsModalV2Footer, SpsMultiSelect, SpsMultiSelectExamples, SpsPageSelector, SpsPageSubtitle, SpsPageTitle, SpsPageTitleExamples, SpsPagination, SpsPaginationExamples, SpsProductBar, SpsProductBarExamples, SpsProductBarTab, SpsProgressBar, SpsProgressBarExamples, SpsProgressRing, SpsRadioButton, SpsRadioButtonExamples, SpsScrollableContainer, SpsScrollableContainerExamples, SpsSearchResultsBar, SpsSearchResultsBarExamples, SpsSelect, SpsSelectExamples, SpsSideNav, SpsSideNavExamples, SpsSlackLink, SpsSlackLinkExamples, SpsSortingHeader, SpsSortingHeaderCell, SpsSortingHeaderExamples, SpsSpinner, SpsSpinnerExamples, SpsSplitButton, SpsSplitButtonExamples, SpsSteppedProgressBar, SpsSteppedProgressBarExamples, SpsSummaryListColumn, SpsSummaryListExamples, SpsSummaryListExpansion, SpsSummaryListRow, SpsTab, SpsTabPanel, SpsTable, SpsTableBody, SpsTableCell, SpsTableExamples, SpsTableHead, SpsTableHeader, SpsTableRow, SpsTabsV2, SpsTag, SpsTagExamples, SpsTaskQueue, SpsTaskQueueExamples, SpsTbody, SpsTd, SpsTextInput, SpsTextInputExamples, SpsTextarea, SpsTextareaExamples, SpsTh, SpsThead, SpsTile, SpsTileList, SpsTileListExamples, SpsToggle, SpsToggleExamples, SpsTooltip, SpsTooltipExamples, SpsTooltipTitle, SpsTr, SpsValidators, SpsVerticalRule, SpsVr, SpsWf, SpsWfDoc, SpsWfDs, SpsWfStep, SpsWizardExamples, SpsWizardSidebar, SpsWizardSubstep, SpsWorkflow, SpsWorkflowDocument, SpsWorkflowDocumentStatus, SpsWorkflowExamples, SpsWorkflowStep, SpsZeroState, SpsZeroStateExamples, TooltipVisibility, contentOf, date, dateConstraint, dateRange, findParentBranches, flipPosition, formArray, formControl, formGroup, getMember, getPosition, selectChildren, toggleTooltipState, useCheckDeprecatedProps, useDidUpdateEffect, useDocumentEventListener, useElementId, useForm, useGrowlers, useInputPopup, usePatchReducer, usePortal, useServerSideValidation, useSpsAction, useSpsForm, validate, weekOfMonth };
|