@orangelogic/design-system 2.144.0 → 2.145.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/library/chunks/{document-viewer.PHoFv8xz.js → document-viewer.CMHuC2Di.js} +1193 -1171
- package/library/components/atoms.js +1 -1
- package/library/components/document-viewer.js +1 -1
- package/library/components/types.js +247 -239
- package/library/package.json +1 -1
- package/library/packages/organisms/src/content-builder/styleController.d.ts +3 -0
- package/library/packages/react-web-component.d.ts +14768 -2717
- package/library/packages/types/src/content-builder.d.ts +4 -0
- package/package.json +1 -1
|
@@ -125,6 +125,10 @@ export type PropertyConfig<T = Record<string, any>> = Omit<TraitProperties, 'opt
|
|
|
125
125
|
};
|
|
126
126
|
helpText?: string | ((record: Record<string, unknown>) => string);
|
|
127
127
|
id: string;
|
|
128
|
+
infoTextConfigs?: {
|
|
129
|
+
/** CSS color value applied to the info-text label and help text. */
|
|
130
|
+
color?: string;
|
|
131
|
+
};
|
|
128
132
|
inputConfigs?: {
|
|
129
133
|
label?: string;
|
|
130
134
|
suffix?: {
|