@royaloperahouse/chord 2.3.2-a-chord-development → 2.3.3-a-chord-development
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/CHANGELOG.md +3 -0
- package/dist/chord.cjs.development.js +94 -14
- package/dist/chord.cjs.development.js.map +1 -1
- package/dist/chord.cjs.production.min.js +1 -1
- package/dist/chord.cjs.production.min.js.map +1 -1
- package/dist/chord.esm.js +94 -14
- package/dist/chord.esm.js.map +1 -1
- package/dist/components/atoms/TextField/TextFieldLegacy.d.ts +2 -0
- package/dist/types/types.d.ts +4 -0
- package/package.json +1 -1
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ITextFieldProps } from '../../../types/formTypes';
|
|
2
2
|
/**
|
|
3
|
+
* @deprecated
|
|
4
|
+
*
|
|
3
5
|
* # IMPORTANT
|
|
4
6
|
* Please use the `<TextField />` component instead of this component if possible.
|
|
5
7
|
* This component was introduced due to incompatibilities between versions of the Chord library.
|
package/dist/types/types.d.ts
CHANGED
|
@@ -436,6 +436,10 @@ export interface ILogosProps {
|
|
|
436
436
|
* Color used to fill logos.
|
|
437
437
|
*/
|
|
438
438
|
fillColor?: Colors.White | Colors.Black;
|
|
439
|
+
/**
|
|
440
|
+
* Text aligned logo variants.
|
|
441
|
+
*/
|
|
442
|
+
align?: 'left' | 'center';
|
|
439
443
|
}
|
|
440
444
|
export interface ILogosStyledProps extends StyledProps<any> {
|
|
441
445
|
/**
|