@royaloperahouse/harmonic 0.13.1 → 0.13.2
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/components/atoms/Tab/Tab.d.ts +1 -1
- package/dist/harmonic.cjs.development.js +3 -1
- package/dist/harmonic.cjs.development.js.map +1 -1
- package/dist/harmonic.cjs.production.min.js +1 -1
- package/dist/harmonic.cjs.production.min.js.map +1 -1
- package/dist/harmonic.esm.js +3 -1
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/types.d.ts +4 -0
- package/package.json +1 -1
package/dist/types/types.d.ts
CHANGED
|
@@ -163,6 +163,10 @@ export interface ITabProps {
|
|
|
163
163
|
* Defines if it is needed to trim the text of the Tab and add 3 dots in the end
|
|
164
164
|
*/
|
|
165
165
|
trimText?: boolean;
|
|
166
|
+
/**
|
|
167
|
+
* Boolean indicating if the Tab is open.
|
|
168
|
+
*/
|
|
169
|
+
isOpen?: boolean;
|
|
166
170
|
}
|
|
167
171
|
export interface IDropdownProps {
|
|
168
172
|
/**
|