@instructure/ui-tabs 8.10.3-snapshot.3 → 8.11.1-snapshot.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/CHANGELOG.md +4 -0
- package/es/Tabs/Panel/index.js +15 -1
- package/es/Tabs/Panel/props.js +4 -0
- package/es/Tabs/index.js +11 -1
- package/es/Tabs/props.js +4 -0
- package/lib/Tabs/Panel/index.js +15 -1
- package/lib/Tabs/Panel/props.js +4 -0
- package/lib/Tabs/index.js +11 -1
- package/lib/Tabs/props.js +4 -0
- package/package.json +21 -21
- package/src/Tabs/Panel/index.tsx +13 -1
- package/src/Tabs/Panel/props.ts +10 -2
- package/src/Tabs/Tab/props.ts +8 -2
- package/src/Tabs/index.tsx +14 -2
- package/src/Tabs/props.ts +10 -2
- package/types/Tabs/Panel/index.d.ts +2 -0
- package/types/Tabs/Panel/index.d.ts.map +1 -1
- package/types/Tabs/Panel/props.d.ts +2 -2
- package/types/Tabs/Panel/props.d.ts.map +1 -1
- package/types/Tabs/Tab/index.d.ts +0 -12
- package/types/Tabs/Tab/index.d.ts.map +1 -1
- package/types/Tabs/Tab/props.d.ts +2 -2
- package/types/Tabs/Tab/props.d.ts.map +1 -1
- package/types/Tabs/index.d.ts +2 -0
- package/types/Tabs/index.d.ts.map +1 -1
- package/types/Tabs/props.d.ts +2 -2
- package/types/Tabs/props.d.ts.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [8.11.0](https://github.com/instructure/instructure-ui/compare/v8.10.2...v8.11.0) (2021-10-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @instructure/ui-tabs
|
|
9
|
+
|
|
6
10
|
## [8.10.2](https://github.com/instructure/instructure-ui/compare/v8.10.1...v8.10.2) (2021-10-01)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @instructure/ui-tabs
|
package/es/Tabs/Panel/index.js
CHANGED
|
@@ -44,6 +44,20 @@ id: Tabs.Panel
|
|
|
44
44
|
**/
|
|
45
45
|
|
|
46
46
|
let Panel = (_dec = withStyle(generateStyle, generateComponentTheme), _dec(_class = (_temp = _class2 = class Panel extends Component {
|
|
47
|
+
constructor(...args) {
|
|
48
|
+
super(...args);
|
|
49
|
+
this.ref = null;
|
|
50
|
+
|
|
51
|
+
this.handleRef = el => {
|
|
52
|
+
const elementRef = this.props.elementRef;
|
|
53
|
+
this.ref = el;
|
|
54
|
+
|
|
55
|
+
if (typeof elementRef === 'function') {
|
|
56
|
+
elementRef(el);
|
|
57
|
+
}
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
|
|
47
61
|
componentDidMount() {
|
|
48
62
|
var _this$props$makeStyle, _this$props;
|
|
49
63
|
|
|
@@ -79,7 +93,7 @@ let Panel = (_dec = withStyle(generateStyle, generateComponentTheme), _dec(_clas
|
|
|
79
93
|
id: id,
|
|
80
94
|
"aria-labelledby": labelledBy,
|
|
81
95
|
"aria-hidden": isHidden ? 'true' : void 0,
|
|
82
|
-
ref:
|
|
96
|
+
ref: this.handleRef
|
|
83
97
|
}), jsx(Transition, {
|
|
84
98
|
type: "fade",
|
|
85
99
|
in: !isHidden,
|
package/es/Tabs/Panel/props.js
CHANGED
|
@@ -39,6 +39,10 @@ const propTypes = {
|
|
|
39
39
|
labelledBy: PropTypes.string,
|
|
40
40
|
padding: ThemeablePropTypes.spacing,
|
|
41
41
|
textAlign: PropTypes.oneOf(['start', 'center', 'end']),
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* provides a reference to the underlying html root element
|
|
45
|
+
*/
|
|
42
46
|
elementRef: PropTypes.func
|
|
43
47
|
};
|
|
44
48
|
const allowedProps = ['renderTitle', 'children', 'variant', 'isSelected', 'isDisabled', 'maxHeight', 'minHeight', 'id', 'labelledBy', 'padding', 'textAlign', 'elementRef'];
|
package/es/Tabs/index.js
CHANGED
|
@@ -55,6 +55,16 @@ category: components
|
|
|
55
55
|
let Tabs = (_dec = withStyle(generateStyle, generateComponentTheme), _dec2 = bidirectional(), _dec3 = testable(), _dec(_class = _dec2(_class = _dec3(_class = (_temp = _class2 = class Tabs extends Component {
|
|
56
56
|
constructor(props) {
|
|
57
57
|
super(props);
|
|
58
|
+
this.ref = null;
|
|
59
|
+
|
|
60
|
+
this.handleRef = el => {
|
|
61
|
+
const elementRef = this.props.elementRef;
|
|
62
|
+
this.ref = el;
|
|
63
|
+
|
|
64
|
+
if (typeof elementRef === 'function') {
|
|
65
|
+
elementRef(el);
|
|
66
|
+
}
|
|
67
|
+
};
|
|
58
68
|
|
|
59
69
|
this.handleTabClick = (event, {
|
|
60
70
|
index,
|
|
@@ -346,7 +356,7 @@ let Tabs = (_dec = withStyle(generateStyle, generateComponentTheme), _dec2 = bid
|
|
|
346
356
|
css: styles === null || styles === void 0 ? void 0 : styles.scrollSpacer
|
|
347
357
|
}), scrollOverlay];
|
|
348
358
|
return jsx(View, Object.assign({}, passthroughProps(props), {
|
|
349
|
-
elementRef:
|
|
359
|
+
elementRef: this.handleRef,
|
|
350
360
|
maxWidth: maxWidth,
|
|
351
361
|
margin: margin,
|
|
352
362
|
as: "div",
|
package/es/Tabs/props.js
CHANGED
package/lib/Tabs/Panel/index.js
CHANGED
|
@@ -36,6 +36,20 @@ id: Tabs.Panel
|
|
|
36
36
|
---
|
|
37
37
|
**/
|
|
38
38
|
let Panel = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default), _dec(_class = (_temp = _class2 = class Panel extends _react.Component {
|
|
39
|
+
constructor(...args) {
|
|
40
|
+
super(...args);
|
|
41
|
+
this.ref = null;
|
|
42
|
+
|
|
43
|
+
this.handleRef = el => {
|
|
44
|
+
const elementRef = this.props.elementRef;
|
|
45
|
+
this.ref = el;
|
|
46
|
+
|
|
47
|
+
if (typeof elementRef === 'function') {
|
|
48
|
+
elementRef(el);
|
|
49
|
+
}
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
|
|
39
53
|
componentDidMount() {
|
|
40
54
|
var _this$props$makeStyle, _this$props;
|
|
41
55
|
|
|
@@ -70,7 +84,7 @@ let Panel = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default), _d
|
|
|
70
84
|
id: id,
|
|
71
85
|
"aria-labelledby": labelledBy,
|
|
72
86
|
"aria-hidden": isHidden ? 'true' : void 0,
|
|
73
|
-
ref:
|
|
87
|
+
ref: this.handleRef
|
|
74
88
|
}), (0, _emotion.jsx)(_Transition.Transition, {
|
|
75
89
|
type: "fade",
|
|
76
90
|
in: !isHidden,
|
package/lib/Tabs/Panel/props.js
CHANGED
|
@@ -50,6 +50,10 @@ const propTypes = {
|
|
|
50
50
|
labelledBy: _propTypes.default.string,
|
|
51
51
|
padding: _emotion.ThemeablePropTypes.spacing,
|
|
52
52
|
textAlign: _propTypes.default.oneOf(['start', 'center', 'end']),
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* provides a reference to the underlying html root element
|
|
56
|
+
*/
|
|
53
57
|
elementRef: _propTypes.default.func
|
|
54
58
|
};
|
|
55
59
|
exports.propTypes = propTypes;
|
package/lib/Tabs/index.js
CHANGED
|
@@ -69,6 +69,16 @@ category: components
|
|
|
69
69
|
let Tabs = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default), _dec2 = (0, _bidirectional.bidirectional)(), _dec3 = (0, _testable.testable)(), _dec(_class = _dec2(_class = _dec3(_class = (_temp = _class2 = class Tabs extends _react.Component {
|
|
70
70
|
constructor(props) {
|
|
71
71
|
super(props);
|
|
72
|
+
this.ref = null;
|
|
73
|
+
|
|
74
|
+
this.handleRef = el => {
|
|
75
|
+
const elementRef = this.props.elementRef;
|
|
76
|
+
this.ref = el;
|
|
77
|
+
|
|
78
|
+
if (typeof elementRef === 'function') {
|
|
79
|
+
elementRef(el);
|
|
80
|
+
}
|
|
81
|
+
};
|
|
72
82
|
|
|
73
83
|
this.handleTabClick = (event, {
|
|
74
84
|
index,
|
|
@@ -363,7 +373,7 @@ let Tabs = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default), _de
|
|
|
363
373
|
css: styles === null || styles === void 0 ? void 0 : styles.scrollSpacer
|
|
364
374
|
}), scrollOverlay];
|
|
365
375
|
return (0, _emotion.jsx)(_View.View, Object.assign({}, (0, _passthroughProps.passthroughProps)(props), {
|
|
366
|
-
elementRef:
|
|
376
|
+
elementRef: this.handleRef,
|
|
367
377
|
maxWidth: maxWidth,
|
|
368
378
|
margin: margin,
|
|
369
379
|
as: "div",
|
package/lib/Tabs/props.js
CHANGED
|
@@ -73,6 +73,10 @@ const propTypes = {
|
|
|
73
73
|
*/
|
|
74
74
|
padding: _emotion.ThemeablePropTypes.spacing,
|
|
75
75
|
textAlign: _propTypes.default.oneOf(['start', 'center', 'end']),
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* provides a reference to the underlying html root element
|
|
79
|
+
*/
|
|
76
80
|
elementRef: _propTypes.default.func,
|
|
77
81
|
|
|
78
82
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-tabs",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.11.1-snapshot.0+8536a1c9b",
|
|
4
4
|
"description": "A UI component library made by Instructure Inc.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -24,28 +24,28 @@
|
|
|
24
24
|
},
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@instructure/ui-babel-preset": "8.
|
|
28
|
-
"@instructure/ui-color-utils": "8.
|
|
29
|
-
"@instructure/ui-test-locator": "8.
|
|
30
|
-
"@instructure/ui-test-utils": "8.
|
|
31
|
-
"@instructure/ui-themes": "8.
|
|
27
|
+
"@instructure/ui-babel-preset": "8.11.1-snapshot.0+8536a1c9b",
|
|
28
|
+
"@instructure/ui-color-utils": "8.11.1-snapshot.0+8536a1c9b",
|
|
29
|
+
"@instructure/ui-test-locator": "8.11.1-snapshot.0+8536a1c9b",
|
|
30
|
+
"@instructure/ui-test-utils": "8.11.1-snapshot.0+8536a1c9b",
|
|
31
|
+
"@instructure/ui-themes": "8.11.1-snapshot.0+8536a1c9b"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@babel/runtime": "^7.13.10",
|
|
35
|
-
"@instructure/console": "8.
|
|
36
|
-
"@instructure/debounce": "8.
|
|
37
|
-
"@instructure/emotion": "8.
|
|
38
|
-
"@instructure/shared-types": "8.
|
|
39
|
-
"@instructure/ui-dom-utils": "8.
|
|
40
|
-
"@instructure/ui-focusable": "8.
|
|
41
|
-
"@instructure/ui-i18n": "8.
|
|
42
|
-
"@instructure/ui-motion": "8.
|
|
43
|
-
"@instructure/ui-prop-types": "8.
|
|
44
|
-
"@instructure/ui-react-utils": "8.
|
|
45
|
-
"@instructure/ui-testable": "8.
|
|
46
|
-
"@instructure/ui-utils": "8.
|
|
47
|
-
"@instructure/ui-view": "8.
|
|
48
|
-
"@instructure/uid": "8.
|
|
35
|
+
"@instructure/console": "8.11.1-snapshot.0+8536a1c9b",
|
|
36
|
+
"@instructure/debounce": "8.11.1-snapshot.0+8536a1c9b",
|
|
37
|
+
"@instructure/emotion": "8.11.1-snapshot.0+8536a1c9b",
|
|
38
|
+
"@instructure/shared-types": "8.11.1-snapshot.0+8536a1c9b",
|
|
39
|
+
"@instructure/ui-dom-utils": "8.11.1-snapshot.0+8536a1c9b",
|
|
40
|
+
"@instructure/ui-focusable": "8.11.1-snapshot.0+8536a1c9b",
|
|
41
|
+
"@instructure/ui-i18n": "8.11.1-snapshot.0+8536a1c9b",
|
|
42
|
+
"@instructure/ui-motion": "8.11.1-snapshot.0+8536a1c9b",
|
|
43
|
+
"@instructure/ui-prop-types": "8.11.1-snapshot.0+8536a1c9b",
|
|
44
|
+
"@instructure/ui-react-utils": "8.11.1-snapshot.0+8536a1c9b",
|
|
45
|
+
"@instructure/ui-testable": "8.11.1-snapshot.0+8536a1c9b",
|
|
46
|
+
"@instructure/ui-utils": "8.11.1-snapshot.0+8536a1c9b",
|
|
47
|
+
"@instructure/ui-view": "8.11.1-snapshot.0+8536a1c9b",
|
|
48
|
+
"@instructure/uid": "8.11.1-snapshot.0+8536a1c9b",
|
|
49
49
|
"keycode": "^2",
|
|
50
50
|
"prop-types": "^15"
|
|
51
51
|
},
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"access": "public"
|
|
57
57
|
},
|
|
58
58
|
"sideEffects": false,
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "8536a1c9badcd8c1d2ce55dfb462d1899e3ca500"
|
|
60
60
|
}
|
package/src/Tabs/Panel/index.tsx
CHANGED
|
@@ -70,6 +70,18 @@ class Panel extends Component<TabsPanelProps> {
|
|
|
70
70
|
this.props.makeStyles?.()
|
|
71
71
|
}
|
|
72
72
|
|
|
73
|
+
ref: Element | null = null
|
|
74
|
+
|
|
75
|
+
handleRef = (el: Element | null) => {
|
|
76
|
+
const { elementRef } = this.props
|
|
77
|
+
|
|
78
|
+
this.ref = el
|
|
79
|
+
|
|
80
|
+
if (typeof elementRef === 'function') {
|
|
81
|
+
elementRef(el)
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
73
85
|
render() {
|
|
74
86
|
const {
|
|
75
87
|
labelledBy,
|
|
@@ -96,7 +108,7 @@ class Panel extends Component<TabsPanelProps> {
|
|
|
96
108
|
id={id}
|
|
97
109
|
aria-labelledby={labelledBy}
|
|
98
110
|
aria-hidden={isHidden ? 'true' : undefined}
|
|
99
|
-
ref={
|
|
111
|
+
ref={this.handleRef}
|
|
100
112
|
>
|
|
101
113
|
<Transition
|
|
102
114
|
type="fade"
|
package/src/Tabs/Panel/props.ts
CHANGED
|
@@ -32,7 +32,11 @@ import type {
|
|
|
32
32
|
WithStyleProps,
|
|
33
33
|
ComponentStyle
|
|
34
34
|
} from '@instructure/emotion'
|
|
35
|
-
import type {
|
|
35
|
+
import type {
|
|
36
|
+
OtherHTMLAttributes,
|
|
37
|
+
PropValidators,
|
|
38
|
+
TabsPanelTheme
|
|
39
|
+
} from '@instructure/shared-types'
|
|
36
40
|
|
|
37
41
|
type TabsPanelOwnProps = {
|
|
38
42
|
renderTitle: React.ReactNode | ((...args: any[]) => any)
|
|
@@ -54,7 +58,8 @@ type PropKeys = keyof TabsPanelOwnProps
|
|
|
54
58
|
type AllowedPropKeys = Readonly<Array<PropKeys>>
|
|
55
59
|
|
|
56
60
|
type TabsPanelProps = TabsPanelOwnProps &
|
|
57
|
-
WithStyleProps<TabsPanelTheme, TabsPanelStyle>
|
|
61
|
+
WithStyleProps<TabsPanelTheme, TabsPanelStyle> &
|
|
62
|
+
OtherHTMLAttributes<TabsPanelOwnProps>
|
|
58
63
|
|
|
59
64
|
type TabsPanelStyle = ComponentStyle<'panel' | 'content'>
|
|
60
65
|
|
|
@@ -74,6 +79,9 @@ const propTypes: PropValidators<PropKeys> = {
|
|
|
74
79
|
labelledBy: PropTypes.string,
|
|
75
80
|
padding: ThemeablePropTypes.spacing,
|
|
76
81
|
textAlign: PropTypes.oneOf(['start', 'center', 'end']),
|
|
82
|
+
/**
|
|
83
|
+
* provides a reference to the underlying html root element
|
|
84
|
+
*/
|
|
77
85
|
elementRef: PropTypes.func
|
|
78
86
|
}
|
|
79
87
|
|
package/src/Tabs/Tab/props.ts
CHANGED
|
@@ -25,7 +25,11 @@
|
|
|
25
25
|
import React from 'react'
|
|
26
26
|
import PropTypes from 'prop-types'
|
|
27
27
|
|
|
28
|
-
import type {
|
|
28
|
+
import type {
|
|
29
|
+
OtherHTMLAttributes,
|
|
30
|
+
PropValidators,
|
|
31
|
+
TabsTabTheme
|
|
32
|
+
} from '@instructure/shared-types'
|
|
29
33
|
import type { WithStyleProps, ComponentStyle } from '@instructure/emotion'
|
|
30
34
|
|
|
31
35
|
type TabsTabOwnProps = {
|
|
@@ -44,7 +48,9 @@ type PropKeys = keyof TabsTabOwnProps
|
|
|
44
48
|
|
|
45
49
|
type AllowedPropKeys = Readonly<Array<PropKeys>>
|
|
46
50
|
|
|
47
|
-
type TabsTabProps = TabsTabOwnProps &
|
|
51
|
+
type TabsTabProps = TabsTabOwnProps &
|
|
52
|
+
WithStyleProps<TabsTabTheme, TabsTabStyle> &
|
|
53
|
+
OtherHTMLAttributes<TabsTabOwnProps>
|
|
48
54
|
|
|
49
55
|
type TabsTabStyle = ComponentStyle<'tab'>
|
|
50
56
|
|
package/src/Tabs/index.tsx
CHANGED
|
@@ -79,6 +79,18 @@ class Tabs extends Component<TabsProps> {
|
|
|
79
79
|
static Panel = Panel
|
|
80
80
|
static Tab = Tab
|
|
81
81
|
|
|
82
|
+
ref: Element | null = null
|
|
83
|
+
|
|
84
|
+
handleRef = (el: Element | null) => {
|
|
85
|
+
const { elementRef } = this.props
|
|
86
|
+
|
|
87
|
+
this.ref = el
|
|
88
|
+
|
|
89
|
+
if (typeof elementRef === 'function') {
|
|
90
|
+
elementRef(el)
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
82
94
|
// @ts-expect-error ts-migrate(7006) FIXME: Parameter 'props' implicitly has an 'any' type.
|
|
83
95
|
constructor(props) {
|
|
84
96
|
super(props)
|
|
@@ -199,7 +211,7 @@ class Tabs extends Component<TabsProps> {
|
|
|
199
211
|
}
|
|
200
212
|
}
|
|
201
213
|
|
|
202
|
-
// @ts-expect-error TODO not all codepaths return a value!
|
|
214
|
+
// @ts-expect-error TODO: not all codepaths return a value!
|
|
203
215
|
getOverlayWidth() {
|
|
204
216
|
const { variant, tabOverflow, styles } = this.props
|
|
205
217
|
|
|
@@ -467,7 +479,7 @@ class Tabs extends Component<TabsProps> {
|
|
|
467
479
|
return (
|
|
468
480
|
<View
|
|
469
481
|
{...passthroughProps(props)}
|
|
470
|
-
elementRef={
|
|
482
|
+
elementRef={this.handleRef}
|
|
471
483
|
maxWidth={maxWidth}
|
|
472
484
|
margin={margin}
|
|
473
485
|
as="div"
|
package/src/Tabs/props.ts
CHANGED
|
@@ -34,7 +34,11 @@ import type {
|
|
|
34
34
|
WithStyleProps,
|
|
35
35
|
ComponentStyle
|
|
36
36
|
} from '@instructure/emotion'
|
|
37
|
-
import type {
|
|
37
|
+
import type {
|
|
38
|
+
OtherHTMLAttributes,
|
|
39
|
+
PropValidators,
|
|
40
|
+
TabsTheme
|
|
41
|
+
} from '@instructure/shared-types'
|
|
38
42
|
import type { BidirectionalProps } from '@instructure/ui-i18n'
|
|
39
43
|
|
|
40
44
|
type TabsOwnProps = {
|
|
@@ -60,7 +64,8 @@ type AllowedPropKeys = Readonly<Array<PropKeys>>
|
|
|
60
64
|
|
|
61
65
|
type TabsProps = TabsOwnProps &
|
|
62
66
|
BidirectionalProps &
|
|
63
|
-
WithStyleProps<TabsTheme, TabsStyle>
|
|
67
|
+
WithStyleProps<TabsTheme, TabsStyle> &
|
|
68
|
+
OtherHTMLAttributes<TabsOwnProps>
|
|
64
69
|
|
|
65
70
|
type TabsStyle = ComponentStyle<
|
|
66
71
|
| 'tabs'
|
|
@@ -104,6 +109,9 @@ const propTypes: PropValidators<PropKeys> = {
|
|
|
104
109
|
*/
|
|
105
110
|
padding: ThemeablePropTypes.spacing,
|
|
106
111
|
textAlign: PropTypes.oneOf(['start', 'center', 'end']),
|
|
112
|
+
/**
|
|
113
|
+
* provides a reference to the underlying html root element
|
|
114
|
+
*/
|
|
107
115
|
elementRef: PropTypes.func,
|
|
108
116
|
/**
|
|
109
117
|
* Choose whether Tabs should stack or scroll when they exceed the width of their
|
|
@@ -50,6 +50,8 @@ declare class Panel extends Component<TabsPanelProps> {
|
|
|
50
50
|
};
|
|
51
51
|
componentDidMount(): void;
|
|
52
52
|
componentDidUpdate(prevProps: any, prevState: any, snapshot: any): void;
|
|
53
|
+
ref: Element | null;
|
|
54
|
+
handleRef: (el: Element | null) => void;
|
|
53
55
|
render(): jsx.JSX.Element;
|
|
54
56
|
}
|
|
55
57
|
export default Panel;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Tabs/Panel/index.tsx"],"names":[],"mappings":"AAwBA,eAAe;AACf,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAMjC,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAIrD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAG7C;;;;;GAKG;AACH,cACM,KAAM,SAAQ,SAAS,CAAC,cAAc,CAAC;IAC3C,MAAM,CAAC,QAAQ,CAAC,WAAW,gBAAe;IAE1C,MAAM,CAAC,YAAY;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,SAAS;;;;;;;;;;;;;OAAY;IAE5B,MAAM,CAAC,YAAY;;;;;;;;;MAUlB;IAED,iBAAiB;IAKjB,kBAAkB,CAAC,SAAS,KAAA,EAAE,SAAS,KAAA,EAAE,QAAQ,KAAA;IAIjD,MAAM;CAgDP;AAED,eAAe,KAAK,CAAA;AACpB,OAAO,EAAE,KAAK,EAAE,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Tabs/Panel/index.tsx"],"names":[],"mappings":"AAwBA,eAAe;AACf,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAMjC,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAIrD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAG7C;;;;;GAKG;AACH,cACM,KAAM,SAAQ,SAAS,CAAC,cAAc,CAAC;IAC3C,MAAM,CAAC,QAAQ,CAAC,WAAW,gBAAe;IAE1C,MAAM,CAAC,YAAY;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,SAAS;;;;;;;;;;;;;OAAY;IAE5B,MAAM,CAAC,YAAY;;;;;;;;;MAUlB;IAED,iBAAiB;IAKjB,kBAAkB,CAAC,SAAS,KAAA,EAAE,SAAS,KAAA,EAAE,QAAQ,KAAA;IAIjD,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAE1B,SAAS,OAAQ,OAAO,GAAG,IAAI,UAQ9B;IAED,MAAM;CAgDP;AAED,eAAe,KAAK,CAAA;AACpB,OAAO,EAAE,KAAK,EAAE,CAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { Spacing, WithStyleProps, ComponentStyle } from '@instructure/emotion';
|
|
3
|
-
import type { PropValidators, TabsPanelTheme } from '@instructure/shared-types';
|
|
3
|
+
import type { OtherHTMLAttributes, PropValidators, TabsPanelTheme } from '@instructure/shared-types';
|
|
4
4
|
declare type TabsPanelOwnProps = {
|
|
5
5
|
renderTitle: React.ReactNode | ((...args: any[]) => any);
|
|
6
6
|
variant?: 'default' | 'secondary';
|
|
@@ -17,7 +17,7 @@ declare type TabsPanelOwnProps = {
|
|
|
17
17
|
};
|
|
18
18
|
declare type PropKeys = keyof TabsPanelOwnProps;
|
|
19
19
|
declare type AllowedPropKeys = Readonly<Array<PropKeys>>;
|
|
20
|
-
declare type TabsPanelProps = TabsPanelOwnProps & WithStyleProps<TabsPanelTheme, TabsPanelStyle>;
|
|
20
|
+
declare type TabsPanelProps = TabsPanelOwnProps & WithStyleProps<TabsPanelTheme, TabsPanelStyle> & OtherHTMLAttributes<TabsPanelOwnProps>;
|
|
21
21
|
declare type TabsPanelStyle = ComponentStyle<'panel' | 'content'>;
|
|
22
22
|
declare const propTypes: PropValidators<PropKeys>;
|
|
23
23
|
declare const allowedProps: AllowedPropKeys;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/Tabs/Panel/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAKzB,OAAO,KAAK,EACV,OAAO,EACP,cAAc,EACd,cAAc,EACf,MAAM,sBAAsB,CAAA;AAC7B,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/Tabs/Panel/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAKzB,OAAO,KAAK,EACV,OAAO,EACP,cAAc,EACd,cAAc,EACf,MAAM,sBAAsB,CAAA;AAC7B,OAAO,KAAK,EACV,mBAAmB,EACnB,cAAc,EACd,cAAc,EACf,MAAM,2BAA2B,CAAA;AAElC,aAAK,iBAAiB,GAAG;IACvB,WAAW,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,CAAA;IACxD,OAAO,CAAC,EAAE,SAAS,GAAG,WAAW,CAAA;IACjC,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IAC3B,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IAC3B,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,SAAS,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,KAAK,CAAA;IACtC,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,KAAK,IAAI,CAAA;IAC9C,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;CAC3B,CAAA;AAED,aAAK,QAAQ,GAAG,MAAM,iBAAiB,CAAA;AAEvC,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,cAAc,GAAG,iBAAiB,GACrC,cAAc,CAAC,cAAc,EAAE,cAAc,CAAC,GAC9C,mBAAmB,CAAC,iBAAiB,CAAC,CAAA;AAExC,aAAK,cAAc,GAAG,cAAc,CAAC,OAAO,GAAG,SAAS,CAAC,CAAA;AAEzD,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CAoBvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eAanB,CAAA;AAED,YAAY,EAAE,cAAc,EAAE,cAAc,EAAE,CAAA;AAC9C,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}
|
|
@@ -18,12 +18,6 @@ declare class Tab extends Component<TabsTabProps> {
|
|
|
18
18
|
isDisabled?: boolean | undefined;
|
|
19
19
|
isSelected?: boolean | undefined;
|
|
20
20
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
21
|
-
/**
|
|
22
|
-
---
|
|
23
|
-
parent: Tabs
|
|
24
|
-
id: Tabs.Tab
|
|
25
|
-
---
|
|
26
|
-
**/
|
|
27
21
|
onKeyDown?: ((...args: any[]) => any) | undefined;
|
|
28
22
|
children?: import("react").ReactNode | ((...args: any[]) => import("react").ReactNode);
|
|
29
23
|
})[];
|
|
@@ -35,12 +29,6 @@ declare class Tab extends Component<TabsTabProps> {
|
|
|
35
29
|
isDisabled?: boolean | undefined;
|
|
36
30
|
isSelected?: boolean | undefined;
|
|
37
31
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
38
|
-
/**
|
|
39
|
-
---
|
|
40
|
-
parent: Tabs
|
|
41
|
-
id: Tabs.Tab
|
|
42
|
-
---
|
|
43
|
-
**/
|
|
44
32
|
onKeyDown?: ((...args: any[]) => any) | undefined;
|
|
45
33
|
children?: import("react").ReactNode | ((...args: any[]) => import("react").ReactNode);
|
|
46
34
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Tabs/Tab/index.tsx"],"names":[],"mappings":"AAwBA,eAAe;AACf,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAKjC,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAIrD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAG3C;;;;;GAKG;AACH,cACM,GAAI,SAAQ,SAAS,CAAC,YAAY,CAAC;IACvC,MAAM,CAAC,QAAQ,CAAC,WAAW,cAAa;IAExC,MAAM,CAAC,YAAY
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Tabs/Tab/index.tsx"],"names":[],"mappings":"AAwBA,eAAe;AACf,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAKjC,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAIrD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAG3C;;;;;GAKG;AACH,cACM,GAAI,SAAQ,SAAS,CAAC,YAAY,CAAC;IACvC,MAAM,CAAC,QAAQ,CAAC,WAAW,cAAa;IAExC,MAAM,CAAC,YAAY;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,SAAS;;;;;;;;;;OAAY;IAE5B,MAAM,CAAC,YAAY;;;;;;;;;;;;;MASlB;IAED,iBAAiB;IAKjB,kBAAkB,CAAC,SAAS,KAAA,EAAE,SAAS,KAAA,EAAE,QAAQ,KAAA;IAKjD,WAAW,uBASV;IAGD,aAAa,uBASZ;IAED,MAAM;CA+BP;AAED,eAAe,GAAG,CAAA;AAClB,OAAO,EAAE,GAAG,EAAE,CAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { PropValidators, TabsTabTheme } from '@instructure/shared-types';
|
|
2
|
+
import type { OtherHTMLAttributes, PropValidators, TabsTabTheme } from '@instructure/shared-types';
|
|
3
3
|
import type { WithStyleProps, ComponentStyle } from '@instructure/emotion';
|
|
4
4
|
declare type TabsTabOwnProps = {
|
|
5
5
|
variant?: 'default' | 'secondary';
|
|
@@ -14,7 +14,7 @@ declare type TabsTabOwnProps = {
|
|
|
14
14
|
};
|
|
15
15
|
declare type PropKeys = keyof TabsTabOwnProps;
|
|
16
16
|
declare type AllowedPropKeys = Readonly<Array<PropKeys>>;
|
|
17
|
-
declare type TabsTabProps = TabsTabOwnProps & WithStyleProps<TabsTabTheme, TabsTabStyle>;
|
|
17
|
+
declare type TabsTabProps = TabsTabOwnProps & WithStyleProps<TabsTabTheme, TabsTabStyle> & OtherHTMLAttributes<TabsTabOwnProps>;
|
|
18
18
|
declare type TabsTabStyle = ComponentStyle<'tab'>;
|
|
19
19
|
declare const propTypes: PropValidators<PropKeys>;
|
|
20
20
|
declare const allowedProps: AllowedPropKeys;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/Tabs/Tab/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/Tabs/Tab/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,OAAO,KAAK,EACV,mBAAmB,EACnB,cAAc,EACd,YAAY,EACb,MAAM,2BAA2B,CAAA;AAClC,OAAO,KAAK,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAA;AAE1E,aAAK,eAAe,GAAG;IACrB,OAAO,CAAC,EAAE,SAAS,GAAG,WAAW,CAAA;IACjC,EAAE,EAAE,MAAM,CAAA;IACV,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,EAAE,MAAM,CAAA;IAChB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,OAAO,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACjC,SAAS,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACnC,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,KAAK,CAAC,SAAS,CAAC,CAAA;CACnE,CAAA;AAED,aAAK,QAAQ,GAAG,MAAM,eAAe,CAAA;AAErC,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,YAAY,GAAG,eAAe,GACjC,cAAc,CAAC,YAAY,EAAE,YAAY,CAAC,GAC1C,mBAAmB,CAAC,eAAe,CAAC,CAAA;AAEtC,aAAK,YAAY,GAAG,cAAc,CAAC,KAAK,CAAC,CAAA;AAEzC,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CAUvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eAUnB,CAAA;AAED,YAAY,EAAE,YAAY,EAAE,YAAY,EAAE,CAAA;AAC1C,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}
|
package/types/Tabs/index.d.ts
CHANGED
|
@@ -56,6 +56,8 @@ declare class Tabs extends Component<TabsProps> {
|
|
|
56
56
|
};
|
|
57
57
|
static Panel: typeof Panel;
|
|
58
58
|
static Tab: typeof Tab;
|
|
59
|
+
ref: Element | null;
|
|
60
|
+
handleRef: (el: Element | null) => void;
|
|
59
61
|
constructor(props: any);
|
|
60
62
|
componentDidMount(): void;
|
|
61
63
|
componentDidUpdate(prevProps: any, prevState: any, snapshot: any): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Tabs/index.tsx"],"names":[],"mappings":"AAwBA,eAAe;AACf,OAAO,KAAK,EAAE,EAAE,SAAS,EAAiB,MAAM,OAAO,CAAA;AAmBvD,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAKrD,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAA;AAC3B,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAGxC;;;;GAIG;AACH,cAGM,IAAK,SAAQ,SAAS,CAAC,SAAS,CAAC;IACrC,MAAM,CAAC,QAAQ,CAAC,WAAW,UAAS;IAEpC,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;OAAY;IAE5B,MAAM,CAAC,YAAY;;;;;;;;;;MAQlB;IAED,MAAM,CAAC,KAAK,eAAQ;IACpB,MAAM,CAAC,GAAG,aAAM;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Tabs/index.tsx"],"names":[],"mappings":"AAwBA,eAAe;AACf,OAAO,KAAK,EAAE,EAAE,SAAS,EAAiB,MAAM,OAAO,CAAA;AAmBvD,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAKrD,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAA;AAC3B,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAGxC;;;;GAIG;AACH,cAGM,IAAK,SAAQ,SAAS,CAAC,SAAS,CAAC;IACrC,MAAM,CAAC,QAAQ,CAAC,WAAW,UAAS;IAEpC,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;OAAY;IAE5B,MAAM,CAAC,YAAY;;;;;;;;;;MAQlB;IAED,MAAM,CAAC,KAAK,eAAQ;IACpB,MAAM,CAAC,GAAG,aAAM;IAEhB,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAE1B,SAAS,OAAQ,OAAO,GAAG,IAAI,UAQ9B;gBAGW,KAAK,KAAA;IAajB,iBAAiB;IAcjB,kBAAkB,CAAC,SAAS,KAAA,EAAE,SAAS,KAAA,EAAE,QAAQ,KAAA;IA+CjD,oBAAoB;IAIpB,mBAAmB;IA2BnB,oBAAoB;IAepB,eAAe;IAaf,wBAAwB,CAAC,WAAW,KAAA;IAiDpC,cAAc;;;eAGb;IAGD,gBAAgB;;eAoBf;IAED,YAAY,aAQX;IAGD,UAAU,CAAC,UAAU,KAAA,EAAE,IAAI,KAAA;;;;IA8B3B,YAAY,CAAC,KAAK,KAAA,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE;;;KAAA;IAYjC,SAAS,CAAC,KAAK,KAAA,EAAE,WAAW,KAAA,EAAE,QAAQ,KAAA,EAAE,KAAK,KAAA;IAmB7C,UAAU,CAAC,KAAK,KAAA,EAAE,WAAW,KAAA,EAAE,QAAQ,KAAA,EAAE,KAAK,KAAA;;;;;;;;;;;IAsB9C,kBAAkB,oBAGjB;IAGD,gBAAgB,oBAGf;IAED,KAAK;IASL,MAAM;CAqGP;AAED,eAAe,IAAI,CAAA;AACnB,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,CAAA"}
|
package/types/Tabs/props.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { Spacing, WithStyleProps, ComponentStyle } from '@instructure/emotion';
|
|
3
|
-
import type { PropValidators, TabsTheme } from '@instructure/shared-types';
|
|
3
|
+
import type { OtherHTMLAttributes, PropValidators, TabsTheme } from '@instructure/shared-types';
|
|
4
4
|
import type { BidirectionalProps } from '@instructure/ui-i18n';
|
|
5
5
|
declare type TabsOwnProps = {
|
|
6
6
|
variant?: 'default' | 'secondary';
|
|
@@ -20,7 +20,7 @@ declare type TabsOwnProps = {
|
|
|
20
20
|
};
|
|
21
21
|
declare type PropKeys = keyof TabsOwnProps;
|
|
22
22
|
declare type AllowedPropKeys = Readonly<Array<PropKeys>>;
|
|
23
|
-
declare type TabsProps = TabsOwnProps & BidirectionalProps & WithStyleProps<TabsTheme, TabsStyle>;
|
|
23
|
+
declare type TabsProps = TabsOwnProps & BidirectionalProps & WithStyleProps<TabsTheme, TabsStyle> & OtherHTMLAttributes<TabsOwnProps>;
|
|
24
24
|
declare type TabsStyle = ComponentStyle<'tabs' | 'container' | 'tabList' | 'panelsContainer' | 'scrollOverlay' | 'scrollSpacer' | 'scrollOverlayWidthDefault' | 'scrollOverlayWidthSecondary'>;
|
|
25
25
|
declare const propTypes: PropValidators<PropKeys>;
|
|
26
26
|
declare const allowedProps: AllowedPropKeys;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/Tabs/props.ts"],"names":[],"mappings":"AAuBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAQzB,OAAO,KAAK,EACV,OAAO,EACP,cAAc,EACd,cAAc,EACf,MAAM,sBAAsB,CAAA;AAC7B,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/Tabs/props.ts"],"names":[],"mappings":"AAuBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAQzB,OAAO,KAAK,EACV,OAAO,EACP,cAAc,EACd,cAAc,EACf,MAAM,sBAAsB,CAAA;AAC7B,OAAO,KAAK,EACV,mBAAmB,EACnB,cAAc,EACd,SAAS,EACV,MAAM,2BAA2B,CAAA;AAClC,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AAE9D,aAAK,YAAY,GAAG;IAClB,OAAO,CAAC,EAAE,SAAS,GAAG,WAAW,CAAA;IACjC,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,kBAAkB,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IAC5C,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IAC1B,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IAC3B,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IAC3B,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IAC3B,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,SAAS,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,KAAK,CAAA;IACtC,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,KAAK,IAAI,CAAA;IAC9C,WAAW,CAAC,EAAE,OAAO,GAAG,QAAQ,CAAA;IAChC,mBAAmB,CAAC,EAAE,OAAO,CAAA;IAC7B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;CAC3B,CAAA;AAED,aAAK,QAAQ,GAAG,MAAM,YAAY,CAAA;AAElC,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,SAAS,GAAG,YAAY,GAC3B,kBAAkB,GAClB,cAAc,CAAC,SAAS,EAAE,SAAS,CAAC,GACpC,mBAAmB,CAAC,YAAY,CAAC,CAAA;AAEnC,aAAK,SAAS,GAAG,cAAc,CAC3B,MAAM,GACN,WAAW,GACX,SAAS,GACT,iBAAiB,GACjB,eAAe,GACf,cAAc,GACd,2BAA2B,GAC3B,6BAA6B,CAChC,CAAA;AAED,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CAyCvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eAenB,CAAA;AAED,YAAY,EAAE,SAAS,EAAE,SAAS,EAAE,CAAA;AACpC,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}
|