@pingux/astro 2.211.0-alpha.0 → 2.212.1-alpha.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/cjs/components/LabelValuePairs/LabelValuePairs.d.ts +14 -0
- package/lib/cjs/components/LabelValuePairs/LabelValuePairs.js +70 -0
- package/lib/cjs/components/LabelValuePairs/LabelValuePairs.mdx +69 -0
- package/lib/cjs/components/LabelValuePairs/LabelValuePairs.stories.js +109 -0
- package/lib/cjs/components/LabelValuePairs/LabelValuePairs.styles.d.ts +18 -0
- package/lib/cjs/components/LabelValuePairs/LabelValuePairs.styles.js +28 -0
- package/lib/cjs/components/LabelValuePairs/LabelValuePairs.test.js +315 -0
- package/lib/cjs/components/LabelValuePairs/LabelValuePairsLabel.d.ts +4 -0
- package/lib/cjs/components/LabelValuePairs/LabelValuePairsLabel.js +47 -0
- package/lib/cjs/components/LabelValuePairs/LabelValuePairsRow.d.ts +3 -0
- package/lib/cjs/components/LabelValuePairs/LabelValuePairsRow.js +40 -0
- package/lib/cjs/components/LabelValuePairs/LabelValuePairsSubvalue.d.ts +4 -0
- package/lib/cjs/components/LabelValuePairs/LabelValuePairsSubvalue.js +29 -0
- package/lib/cjs/components/LabelValuePairs/LabelValuePairsValue.d.ts +4 -0
- package/lib/cjs/components/LabelValuePairs/LabelValuePairsValue.js +120 -0
- package/lib/cjs/components/LabelValuePairs/constants.d.ts +5 -0
- package/lib/cjs/components/LabelValuePairs/constants.js +12 -0
- package/lib/cjs/components/LabelValuePairs/index.d.ts +2 -0
- package/lib/cjs/components/LabelValuePairs/index.js +62 -0
- package/lib/cjs/components/LabelValuePairs/labelValuePairsAttributes.d.ts +74 -0
- package/lib/cjs/components/LabelValuePairs/labelValuePairsAttributes.js +20 -0
- package/lib/cjs/index.d.ts +2 -0
- package/lib/cjs/index.js +71 -52
- package/lib/cjs/recipes/ListAndPanel.stories.js +1 -16
- package/lib/cjs/recipes/PanelContent.stories.js +11 -47
- package/lib/cjs/recipes/items.js +38 -30
- package/lib/cjs/styles/themeOverrides/onyxDarkUiLibraryOverride.js +41 -0
- package/lib/cjs/styles/themeOverrides/onyxUiLibraryOverride.d.ts +37 -0
- package/lib/cjs/styles/themeOverrides/onyxUiLibraryOverride.js +47 -0
- package/lib/cjs/styles/themes/next-gen/convertedComponentList.js +1 -1
- package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +17 -0
- package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +17 -0
- package/lib/cjs/styles/themes/next-gen/variants/variants.js +2 -0
- package/lib/cjs/styles/variants/variants.js +2 -0
- package/lib/cjs/types/index.d.ts +1 -0
- package/lib/cjs/types/index.js +46 -35
- package/lib/cjs/types/labelValuePairs.d.ts +35 -0
- package/lib/cjs/types/labelValuePairs.js +6 -0
- package/lib/cjs/utils/designUtils/figmaLinks.d.ts +3 -0
- package/lib/cjs/utils/designUtils/figmaLinks.js +3 -0
- package/lib/components/LabelValuePairs/LabelValuePairs.js +35 -0
- package/lib/components/LabelValuePairs/LabelValuePairs.mdx +69 -0
- package/lib/components/LabelValuePairs/LabelValuePairs.stories.js +102 -0
- package/lib/components/LabelValuePairs/LabelValuePairs.styles.js +21 -0
- package/lib/components/LabelValuePairs/LabelValuePairs.test.js +309 -0
- package/lib/components/LabelValuePairs/LabelValuePairsLabel.js +35 -0
- package/lib/components/LabelValuePairs/LabelValuePairsRow.js +28 -0
- package/lib/components/LabelValuePairs/LabelValuePairsSubvalue.js +17 -0
- package/lib/components/LabelValuePairs/LabelValuePairsValue.js +108 -0
- package/lib/components/LabelValuePairs/constants.js +5 -0
- package/lib/components/LabelValuePairs/index.js +2 -0
- package/lib/components/LabelValuePairs/labelValuePairsAttributes.js +13 -0
- package/lib/index.js +2 -0
- package/lib/recipes/ListAndPanel.stories.js +3 -18
- package/lib/recipes/PanelContent.stories.js +11 -47
- package/lib/recipes/items.js +39 -31
- package/lib/styles/themeOverrides/onyxDarkUiLibraryOverride.js +41 -0
- package/lib/styles/themeOverrides/onyxUiLibraryOverride.js +47 -0
- package/lib/styles/themes/next-gen/convertedComponentList.js +1 -1
- package/lib/styles/themes/next-gen/variants/variants.js +2 -0
- package/lib/styles/variants/variants.js +2 -0
- package/lib/types/index.js +1 -0
- package/lib/types/labelValuePairs.js +1 -0
- package/lib/utils/designUtils/figmaLinks.js +3 -0
- package/package.json +1 -1
package/lib/cjs/recipes/items.js
CHANGED
|
@@ -11,7 +11,26 @@ var _AccountIcon = _interopRequireDefault(require("@pingux/mdi-react/AccountIcon
|
|
|
11
11
|
var _FormSelectIcon = _interopRequireDefault(require("@pingux/mdi-react/FormSelectIcon"));
|
|
12
12
|
var _index = require("../index");
|
|
13
13
|
var _UserImage = _interopRequireDefault(require("../utils/devUtils/assets/UserImage.png"));
|
|
14
|
+
var _statuses = _interopRequireDefault(require("../utils/devUtils/constants/statuses"));
|
|
14
15
|
var _react2 = require("@emotion/react");
|
|
16
|
+
var VerifiedValue = function VerifiedValue(_ref) {
|
|
17
|
+
var value = _ref.value;
|
|
18
|
+
return (0, _react2.jsx)(_index.Box, {
|
|
19
|
+
isRow: true,
|
|
20
|
+
gap: "md"
|
|
21
|
+
}, (0, _react2.jsx)(_index.Text, null, value), (0, _react2.jsx)(_index.Box, {
|
|
22
|
+
isRow: true,
|
|
23
|
+
gap: "xs"
|
|
24
|
+
}, (0, _react2.jsx)(_index.NoticeIcon, {
|
|
25
|
+
color: "success.dark",
|
|
26
|
+
status: _statuses["default"].SUCCESS,
|
|
27
|
+
"aria-label": "".concat(_statuses["default"].SUCCESS, "-icon"),
|
|
28
|
+
size: "xs"
|
|
29
|
+
}), (0, _react2.jsx)(_index.Text, {
|
|
30
|
+
variant: "listSubtitle",
|
|
31
|
+
color: "success.dark"
|
|
32
|
+
}, "Verified")));
|
|
33
|
+
};
|
|
15
34
|
var items = exports.items = [{
|
|
16
35
|
email: 'dburkitt5@columbia.edu',
|
|
17
36
|
firstName: 'Nicola',
|
|
@@ -78,58 +97,47 @@ var items = exports.items = [{
|
|
|
78
97
|
lastName: 'Idel',
|
|
79
98
|
icon: _AccountIcon["default"]
|
|
80
99
|
}];
|
|
100
|
+
var H4Label = function H4Label(_ref2) {
|
|
101
|
+
var children = _ref2.children;
|
|
102
|
+
return (0, _react2.jsx)(_index.PairLabel, {
|
|
103
|
+
textProps: {
|
|
104
|
+
as: 'h3'
|
|
105
|
+
}
|
|
106
|
+
}, children);
|
|
107
|
+
};
|
|
81
108
|
var personalData = exports.personalData = {
|
|
82
109
|
contactInfo: {
|
|
83
110
|
label: 'Contact Info',
|
|
84
111
|
key: 'contactInfoKey',
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
},
|
|
90
|
-
label: 'Primary',
|
|
91
|
-
value: '+1 767-777-3333'
|
|
92
|
-
}, {
|
|
93
|
-
label: 'Address',
|
|
94
|
-
value: '1234 W California St, Denver CO 80101'
|
|
95
|
-
}]
|
|
112
|
+
rows: (0, _react2.jsx)(_react["default"].Fragment, null, (0, _react2.jsx)(_index.Pair, null, (0, _react2.jsx)(H4Label, null, "Email"), (0, _react2.jsx)(_index.PairValue, {
|
|
113
|
+
valueType: _index.ValueTypes.ELEMENT
|
|
114
|
+
}, (0, _react2.jsx)(VerifiedValue, {
|
|
115
|
+
value: "ednepomuceno@pingidentity.com"
|
|
116
|
+
}))), (0, _react2.jsx)(_index.Pair, null, (0, _react2.jsx)(H4Label, null, "Primary"), (0, _react2.jsx)(_index.PairValue, null, "+1 767-777-3333")), (0, _react2.jsx)(_index.Pair, null, (0, _react2.jsx)(H4Label, null, "Address"), (0, _react2.jsx)(_index.PairValue, null, "1234 W California St, Denver CO 80101")))
|
|
96
117
|
},
|
|
97
118
|
personalInfo: {
|
|
98
119
|
label: 'Personal Info',
|
|
99
120
|
key: 'personalInfoKey',
|
|
100
121
|
image: _UserImage["default"],
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
}, {
|
|
105
|
-
label: 'Famile Name',
|
|
106
|
-
value: 'Nepomuceno'
|
|
107
|
-
}]
|
|
122
|
+
givenName: 'Ed',
|
|
123
|
+
familyName: 'Nepomuceno',
|
|
124
|
+
rows: (0, _react2.jsx)(_react["default"].Fragment, null, (0, _react2.jsx)(_index.Pair, null, (0, _react2.jsx)(H4Label, null, "Given Name"), (0, _react2.jsx)(_index.PairValue, null, "Ed")), (0, _react2.jsx)(_index.Pair, null, (0, _react2.jsx)(H4Label, null, "Famile Name"), (0, _react2.jsx)(_index.PairValue, null, "Nepomuceno")))
|
|
108
125
|
},
|
|
109
126
|
companyInfo: {
|
|
110
127
|
label: 'Company Info',
|
|
111
128
|
key: 'companyInfoKey',
|
|
112
|
-
|
|
113
|
-
label: 'Tile',
|
|
114
|
-
value: 'Interaction Designer'
|
|
115
|
-
}]
|
|
129
|
+
rows: (0, _react2.jsx)(_index.Pair, null, (0, _react2.jsx)(H4Label, null, "Tile"), (0, _react2.jsx)(_index.PairValue, null, "Interaction Designer"))
|
|
116
130
|
},
|
|
117
131
|
customAttributes: {
|
|
118
132
|
label: 'Custom Attributes',
|
|
119
133
|
key: 'customAttributesKey',
|
|
120
|
-
|
|
121
|
-
label: 'T-Shirt Size',
|
|
122
|
-
value: 'Large'
|
|
123
|
-
}, {
|
|
124
|
-
label: 'Example Multi-Value Attribute',
|
|
125
|
-
value: 'value,value,value,value,value,value,value,value,value,value,value,value,value,value,value,value,value,value,value,'
|
|
126
|
-
}]
|
|
134
|
+
rows: (0, _react2.jsx)(_react["default"].Fragment, null, (0, _react2.jsx)(_index.Pair, null, (0, _react2.jsx)(H4Label, null, "T-Shirt Size"), (0, _react2.jsx)(_index.PairValue, null, "Large")), (0, _react2.jsx)(_index.Pair, null, (0, _react2.jsx)(H4Label, null, "Example Multi-Value Attribute"), (0, _react2.jsx)(_index.PairValue, null, "value,value,value,value,value,value,value,value,value,value, value,value,value,value,value,value,value,value,value,")))
|
|
127
135
|
},
|
|
128
136
|
jsonAttributes: {
|
|
129
137
|
label: 'JSON Attributes',
|
|
130
138
|
key: 'jsonAttributesKey',
|
|
131
139
|
badges: ['Address', 'Contact', 'Another Json'],
|
|
132
|
-
|
|
140
|
+
rows: null
|
|
133
141
|
}
|
|
134
142
|
};
|
|
135
143
|
var colorBlockButtons = exports.colorBlockButtons = [{
|
|
@@ -151,6 +151,47 @@ var forms = {
|
|
|
151
151
|
}
|
|
152
152
|
}
|
|
153
153
|
},
|
|
154
|
+
comboBox: {
|
|
155
|
+
container: {
|
|
156
|
+
'& input[type=text]': _objectSpread(_objectSpread({}, _nextGenDarkMode["default"].text.inputValue), {}, {
|
|
157
|
+
borderColor: _onyxTokens.astroTokensDark.color.gray[500],
|
|
158
|
+
borderRadius: _onyxTokens.astroTokens.radius.input,
|
|
159
|
+
height: _onyxTokens.astroTokens.size.input.height,
|
|
160
|
+
fontSize: '15px',
|
|
161
|
+
bg: _onyxTokens.astroTokensDark.color.gray[900],
|
|
162
|
+
'::placeholder': _objectSpread(_objectSpread({}, _nextGenDarkMode["default"].text.placeholder), {}, {
|
|
163
|
+
fontStyle: 'unset',
|
|
164
|
+
fontSize: '15px'
|
|
165
|
+
})
|
|
166
|
+
}),
|
|
167
|
+
'& input[type=text]:focus': {
|
|
168
|
+
borderColor: "".concat(_onyxTokens.astroTokens.color.blue[500], " !important")
|
|
169
|
+
},
|
|
170
|
+
'&.is-focused input[type=text]': {
|
|
171
|
+
borderColor: "".concat(_onyxTokens.astroTokens.color.blue[500], " !important")
|
|
172
|
+
},
|
|
173
|
+
'& input[type=text].is-read-only, & input[type=text][readonly]': {
|
|
174
|
+
backgroundColor: _onyxTokens.astroTokensDark.color.input['readonly-bg'],
|
|
175
|
+
borderColor: _onyxTokens.astroTokensDark.color.gray[500]
|
|
176
|
+
},
|
|
177
|
+
'& input[type=text].is-disabled, & input[type=text][disabled]': {
|
|
178
|
+
backgroundColor: _onyxTokens.astroTokensDark.color.input['readonly-bg'],
|
|
179
|
+
borderColor: _onyxTokens.astroTokensDark.color.gray[500],
|
|
180
|
+
opacity: 1
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
button: {
|
|
184
|
+
border: 'none !important',
|
|
185
|
+
bg: 'transparent',
|
|
186
|
+
'&:not(.disabled):hover': {
|
|
187
|
+
border: 'none !important',
|
|
188
|
+
bg: 'transparent'
|
|
189
|
+
},
|
|
190
|
+
'&:focus': {
|
|
191
|
+
border: 'none !important'
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
},
|
|
154
195
|
label: {
|
|
155
196
|
'body &': {
|
|
156
197
|
textTransform: 'none'
|
|
@@ -87,6 +87,43 @@ declare const _default: {
|
|
|
87
87
|
};
|
|
88
88
|
};
|
|
89
89
|
};
|
|
90
|
+
comboBox: {
|
|
91
|
+
container: {
|
|
92
|
+
'& input[type=text]': any;
|
|
93
|
+
'& input[type=text]:focus': {
|
|
94
|
+
outline: string;
|
|
95
|
+
outlineColor: any;
|
|
96
|
+
outlineOffset: string;
|
|
97
|
+
borderColor: string;
|
|
98
|
+
};
|
|
99
|
+
'&.is-focused input[type=text]': {
|
|
100
|
+
outline: string;
|
|
101
|
+
outlineColor: any;
|
|
102
|
+
outlineOffset: string;
|
|
103
|
+
borderColor: string;
|
|
104
|
+
};
|
|
105
|
+
'& input[type=text].is-read-only, & input[type=text][readonly]': {
|
|
106
|
+
backgroundColor: any;
|
|
107
|
+
borderColor: any;
|
|
108
|
+
};
|
|
109
|
+
'& input[type=text].is-disabled, & input[type=text][disabled]': {
|
|
110
|
+
backgroundColor: any;
|
|
111
|
+
borderColor: any;
|
|
112
|
+
opacity: number;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
button: {
|
|
116
|
+
border: string;
|
|
117
|
+
bg: string;
|
|
118
|
+
'&:not(.disabled):hover': {
|
|
119
|
+
border: string;
|
|
120
|
+
bg: string;
|
|
121
|
+
};
|
|
122
|
+
'&:focus': {
|
|
123
|
+
border: string;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
};
|
|
90
127
|
label: {
|
|
91
128
|
'body &': {
|
|
92
129
|
textTransform: string;
|
|
@@ -153,6 +153,53 @@ var forms = {
|
|
|
153
153
|
}
|
|
154
154
|
}
|
|
155
155
|
},
|
|
156
|
+
comboBox: {
|
|
157
|
+
container: {
|
|
158
|
+
'& input[type=text]': _objectSpread(_objectSpread({}, _nextGen["default"].text.inputValue), {}, {
|
|
159
|
+
borderColor: _onyxTokens.astroTokens.color.input.border,
|
|
160
|
+
borderRadius: _onyxTokens.astroTokens.radius.input,
|
|
161
|
+
height: _onyxTokens.astroTokens.size.input.height,
|
|
162
|
+
fontSize: '15px',
|
|
163
|
+
bg: 'white',
|
|
164
|
+
'::placeholder': _objectSpread(_objectSpread({}, _nextGen["default"].text.placeholder), {}, {
|
|
165
|
+
fontStyle: 'unset',
|
|
166
|
+
fontSize: '15px'
|
|
167
|
+
})
|
|
168
|
+
}),
|
|
169
|
+
'& input[type=text]:focus': {
|
|
170
|
+
outline: '1px solid',
|
|
171
|
+
outlineColor: _onyxTokens.astroTokens.color.blue[500],
|
|
172
|
+
outlineOffset: '0px',
|
|
173
|
+
borderColor: "".concat(_onyxTokens.astroTokens.color.blue[500], " !important")
|
|
174
|
+
},
|
|
175
|
+
'&.is-focused input[type=text]': {
|
|
176
|
+
outline: '1px solid',
|
|
177
|
+
outlineColor: _onyxTokens.astroTokens.color.blue[500],
|
|
178
|
+
outlineOffset: '0px',
|
|
179
|
+
borderColor: "".concat(_onyxTokens.astroTokens.color.blue[500], " !important")
|
|
180
|
+
},
|
|
181
|
+
'& input[type=text].is-read-only, & input[type=text][readonly]': {
|
|
182
|
+
backgroundColor: _onyxTokens.astroTokens.color.input['readonly-bg'],
|
|
183
|
+
borderColor: _onyxTokens.astroTokens.color.input.border
|
|
184
|
+
},
|
|
185
|
+
'& input[type=text].is-disabled, & input[type=text][disabled]': {
|
|
186
|
+
backgroundColor: _onyxTokens.astroTokens.color.input['readonly-bg'],
|
|
187
|
+
borderColor: _onyxTokens.astroTokens.color.input.border,
|
|
188
|
+
opacity: 1
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
button: {
|
|
192
|
+
border: 'none !important',
|
|
193
|
+
bg: 'transparent',
|
|
194
|
+
'&:not(.disabled):hover': {
|
|
195
|
+
border: 'none !important',
|
|
196
|
+
bg: 'transparent'
|
|
197
|
+
},
|
|
198
|
+
'&:focus': {
|
|
199
|
+
border: 'none !important'
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
},
|
|
156
203
|
label: {
|
|
157
204
|
'body &': {
|
|
158
205
|
textTransform: 'none'
|
|
@@ -5,7 +5,7 @@ _Object$defineProperty(exports, "__esModule", {
|
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
7
|
exports.onyxOnlyRecipes = exports.nextGenOnlyComponents = exports["default"] = exports.componentSpecificNextGenBlacklist = exports.astroBlacklistStory = void 0;
|
|
8
|
-
var nextGenConvertedComponents = ['AccordionGridGroup', 'AccordionGroup', 'ArrayField', 'AstroProvider', 'Avatar', 'Badge', 'Base Components', 'Breadcrumbs', 'Button', 'ButtonBar', 'Callout', 'Card', 'CheckboxField', 'CodeView', 'ColorField', 'ComboBoxField', 'CopyText', 'DataTable', 'EnvironmentBreadcrumb', 'GridList', 'HelpHint', 'Icon', 'MaterialSymbolIcon', 'IconBadge', 'IconButton', 'IconWrapper', 'ImageUploadField', 'Loader', 'Link', 'LinkSelectField', 'ListView', 'ListViewItem', 'Message', 'Messages', 'Modal', 'MultiValuesField', 'MultivaluesField', 'NavBar', 'NavList', 'NavigationHeader', 'NextGen ListViewItem', 'NumberField', 'OverlayPanel', 'PageHeader', 'Pagination', 'PanelHeader', 'PasswordField', 'PhoneNumberField', 'PopoverMenu', 'ProgressBar', 'RadioField', 'RadioGroupField', 'RangeCalendar', 'RequirementsList', 'RockerButtonGroup', 'SearchField', 'SelectField', 'Skeleton', 'SliderField', 'Stepper', 'Sticker Sheet', 'SwitchField', 'StatusIcon', 'Table', 'TableBase', 'Tabs', 'Text', 'TextAreaField', 'TextField', 'TooltipTrigger', 'ArrayField', 'ColorField', 'LinkSelectField', 'NumberField', 'SwitchField', 'Base Components', 'SliderField', 'ServerErrorBoundary', 'Avatar', 'Box', 'TimeField'];
|
|
8
|
+
var nextGenConvertedComponents = ['AccordionGridGroup', 'AccordionGroup', 'ArrayField', 'AstroProvider', 'Avatar', 'Badge', 'Base Components', 'Breadcrumbs', 'Button', 'ButtonBar', 'Callout', 'Card', 'CheckboxField', 'CodeView', 'ColorField', 'ComboBoxField', 'CopyText', 'DataTable', 'EnvironmentBreadcrumb', 'GridList', 'HelpHint', 'Icon', 'MaterialSymbolIcon', 'IconBadge', 'IconButton', 'IconWrapper', 'ImageUploadField', 'Loader', 'Link', 'LinkSelectField', 'ListView', 'ListViewItem', 'Message', 'Messages', 'Modal', 'MultiValuesField', 'MultivaluesField', 'NavBar', 'NavList', 'NavigationHeader', 'NextGen ListViewItem', 'NumberField', 'OverlayPanel', 'PageHeader', 'Pagination', 'PanelHeader', 'PasswordField', 'PhoneNumberField', 'PopoverMenu', 'ProgressBar', 'RadioField', 'RadioGroupField', 'RangeCalendar', 'RequirementsList', 'RockerButtonGroup', 'SearchField', 'SelectField', 'Skeleton', 'SliderField', 'Stepper', 'Sticker Sheet', 'SwitchField', 'StatusIcon', 'Table', 'TableBase', 'Tabs', 'Text', 'TextAreaField', 'TextField', 'TooltipTrigger', 'ArrayField', 'ColorField', 'LinkSelectField', 'NumberField', 'SwitchField', 'Base Components', 'SliderField', 'ServerErrorBoundary', 'Avatar', 'Box', 'TimeField', 'LabelValuePairs'];
|
|
9
9
|
var componentSpecificNextGenBlacklist = exports.componentSpecificNextGenBlacklist = {
|
|
10
10
|
AstroProvider: ['Default', 'With Custom Theme Override'],
|
|
11
11
|
Messages: ['Customization'],
|
|
@@ -5761,6 +5761,23 @@ declare const _default: {
|
|
|
5761
5761
|
fontSize: any;
|
|
5762
5762
|
};
|
|
5763
5763
|
};
|
|
5764
|
+
labelValuePairs: {
|
|
5765
|
+
container: {
|
|
5766
|
+
gap: string;
|
|
5767
|
+
};
|
|
5768
|
+
fieldItem: {
|
|
5769
|
+
gap: string;
|
|
5770
|
+
};
|
|
5771
|
+
value: {
|
|
5772
|
+
fontWeight: number;
|
|
5773
|
+
color: string;
|
|
5774
|
+
};
|
|
5775
|
+
subLabel: {
|
|
5776
|
+
fontSize: string;
|
|
5777
|
+
fontWeight: number;
|
|
5778
|
+
color: string;
|
|
5779
|
+
};
|
|
5780
|
+
};
|
|
5764
5781
|
listBox: {
|
|
5765
5782
|
container: {
|
|
5766
5783
|
p: any;
|
|
@@ -832,6 +832,23 @@ declare const _default: {
|
|
|
832
832
|
fontSize: any;
|
|
833
833
|
};
|
|
834
834
|
};
|
|
835
|
+
labelValuePairs: {
|
|
836
|
+
container: {
|
|
837
|
+
gap: string;
|
|
838
|
+
};
|
|
839
|
+
fieldItem: {
|
|
840
|
+
gap: string;
|
|
841
|
+
};
|
|
842
|
+
value: {
|
|
843
|
+
fontWeight: number;
|
|
844
|
+
color: string;
|
|
845
|
+
};
|
|
846
|
+
subLabel: {
|
|
847
|
+
fontSize: string;
|
|
848
|
+
fontWeight: number;
|
|
849
|
+
color: string;
|
|
850
|
+
};
|
|
851
|
+
};
|
|
835
852
|
listBox: {
|
|
836
853
|
container: {
|
|
837
854
|
p: any;
|
|
@@ -18,6 +18,7 @@ exports["default"] = exports.badgeDeleteButton = void 0;
|
|
|
18
18
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/defineProperty"));
|
|
19
19
|
var _onyxTokens = require("@pingux/onyx-tokens");
|
|
20
20
|
var _Attachment = _interopRequireDefault(require("../../../../components/AIComponents/Attachment/Attachment.styles"));
|
|
21
|
+
var _LabelValuePairs = _interopRequireDefault(require("../../../../components/LabelValuePairs/LabelValuePairs.styles"));
|
|
21
22
|
var _Skeleton = _interopRequireDefault(require("../../../../components/Skeleton/Skeleton.styles"));
|
|
22
23
|
var _codeView = _interopRequireDefault(require("../codeView/codeView"));
|
|
23
24
|
var _sizes = _interopRequireDefault(require("../sizes"));
|
|
@@ -479,6 +480,7 @@ var _default = exports["default"] = {
|
|
|
479
480
|
footer: _footer.footer,
|
|
480
481
|
helpHint: helpHint,
|
|
481
482
|
iconWrapper: _iconWrapper["default"],
|
|
483
|
+
labelValuePairs: _LabelValuePairs["default"],
|
|
482
484
|
listBox: listBox,
|
|
483
485
|
listView: _listview.listView,
|
|
484
486
|
listViewItem: _listview.listViewItem,
|
|
@@ -36,6 +36,7 @@ var _Footer = _interopRequireDefault(require("../../components/Footer/Footer.sty
|
|
|
36
36
|
var _GridList = _interopRequireDefault(require("../../components/GridList/GridList.styles"));
|
|
37
37
|
var _HelpHint = _interopRequireDefault(require("../../components/HelpHint/HelpHint.styles"));
|
|
38
38
|
var _imageUpload = _interopRequireDefault(require("../../components/ImageUploadField/imageUpload"));
|
|
39
|
+
var _LabelValuePairs = _interopRequireDefault(require("../../components/LabelValuePairs/LabelValuePairs.styles"));
|
|
39
40
|
var _ListBox = _interopRequireDefault(require("../../components/ListBox/ListBox.styles"));
|
|
40
41
|
var _ListItem = _interopRequireDefault(require("../../components/ListItem/ListItem.styles"));
|
|
41
42
|
var _ListView = _interopRequireDefault(require("../../components/ListView/ListView.styles"));
|
|
@@ -95,6 +96,7 @@ var _default = exports["default"] = _objectSpread(_objectSpread({
|
|
|
95
96
|
gridList: _GridList["default"],
|
|
96
97
|
helpHint: _HelpHint["default"],
|
|
97
98
|
imageUpload: _imageUpload["default"],
|
|
99
|
+
labelValuePairs: _LabelValuePairs["default"],
|
|
98
100
|
listBox: _ListBox["default"],
|
|
99
101
|
listItem: _ListItem["default"],
|
|
100
102
|
listView: _ListView["default"],
|
package/lib/cjs/types/index.d.ts
CHANGED