@covalent/components-react 0.0.10 → 9.0.0-beta.4
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/Badge/CovalentBadge.d.ts +1 -0
- package/CodeEditor/CovalentCodeEditor.d.ts +1 -0
- package/ExpansionPanel/CovalentExpansionPanel.d.ts +1 -0
- package/ExpansionPanel/CovalentExpansionPanelItem.d.ts +1 -0
- package/FocusedPage/CovalentFocusedPage.d.ts +1 -0
- package/Formfield/CovalentFormfield.d.ts +1 -0
- package/FullScreenDialog/CovalentFullscreenDialog.d.ts +1 -0
- package/IconButtonToggle/CovalentIconButtonToggle.d.ts +1 -0
- package/NotebookCell/CovalentNotebookCell.d.ts +1 -0
- package/StatusDialog/CovalentStatusDialog.d.ts +1 -0
- package/index.d.ts +55 -45
- package/index.js +2 -2
- package/index.mjs +356 -192
- package/package.json +3 -4
- package/style.css +1 -1
- /package/{action-ribbon/action-ribbon.d.ts → ActionRibbon/CovalentActionRibbon.d.ts} +0 -0
- /package/{alert/alert.d.ts → Alert/CovalentAlert.d.ts} +0 -0
- /package/{app-shell/app-shell.d.ts → AppShell/CovalentAppShell.d.ts} +0 -0
- /package/{button/button.d.ts → Button/CovalentButton.d.ts} +0 -0
- /package/{card/card.d.ts → Card/CovalentCard.d.ts} +0 -0
- /package/{checkbox/checkbox.d.ts → Checkbox/CovalentCheckbox.d.ts} +0 -0
- /package/{chips/chip.d.ts → Chips/CovalentChip.d.ts} +0 -0
- /package/{chips/chip-set.d.ts → Chips/CovalentChipSet.d.ts} +0 -0
- /package/{circular-progress/circular-progress.d.ts → CircularProgress/CovalentCircularProgress.d.ts} +0 -0
- /package/{code-snippet/code-snippet.d.ts → CodeSnippet/CovalentCodeSnippet.d.ts} +0 -0
- /package/{dialog/dialog.d.ts → Dialog/CovalentDialog.d.ts} +0 -0
- /package/{drawer/drawer.d.ts → Drawer/CovalentDrawer.d.ts} +0 -0
- /package/{empty-state/empty-state.d.ts → EmptyState/CovalentEmptyState.d.ts} +0 -0
- /package/{icon/icon.d.ts → Icon/CovalentIcon.d.ts} +0 -0
- /package/{icon-button/icon-button.d.ts → IconButton/CovalentIconButton.d.ts} +0 -0
- /package/{icon-checkbox/icon-checkbox.d.ts → IconCheckbox/CovalentIconCheckToggle.d.ts} +0 -0
- /package/{icon-radio/icon-radio.d.ts → IconRadio/CovalentIconRadioToggle.d.ts} +0 -0
- /package/{linear-progress/linear-progress.d.ts → LinearProgress/CovalentLinearProgress.d.ts} +0 -0
- /package/{list/check-list-item.d.ts → List/CovalentCheckListItem.d.ts} +0 -0
- /package/{list/list.d.ts → List/CovalentList.d.ts} +0 -0
- /package/{list/list-item.d.ts → List/CovalentListItem.d.ts} +0 -0
- /package/{list/nav-list-item.d.ts → List/CovalentNavRailListItem.d.ts} +0 -0
- /package/{list/radio-list-item.d.ts → List/CovalentRadioListItem.d.ts} +0 -0
- /package/{menu/menu.d.ts → Menu/CovalentMenu.d.ts} +0 -0
- /package/{radio/radio.d.ts → Radio/CovalentRadio.d.ts} +0 -0
- /package/{select/select.d.ts → Select/CovalentSelect.d.ts} +0 -0
- /package/{side-sheet/side-sheet.d.ts → SideSheet/CovalentSideSheet.d.ts} +0 -0
- /package/{slider/slider.d.ts → Slider/CovalentSlider.d.ts} +0 -0
- /package/{slider-range/slider-range.d.ts → Slider/CovalentSliderRange.d.ts} +0 -0
- /package/{snackbar/snackbar.d.ts → Snackbar/CovalentSnackbar.d.ts} +0 -0
- /package/{status-header/status-header.d.ts → StatusHeader/CovalentStatusHeader.d.ts} +0 -0
- /package/{status-header/status-header-item.d.ts → StatusHeader/CovalentStatusHeaderItem.d.ts} +0 -0
- /package/{switch/switch.d.ts → Switch/CovalentSwitch.d.ts} +0 -0
- /package/{tab/tab.d.ts → Tab/CovalentTab.d.ts} +0 -0
- /package/{tab/tab-bar.d.ts → Tab/CovalentTabBar.d.ts} +0 -0
- /package/{text-lockup/text-lockup.d.ts → TextLockup/CovalentTextLockup.d.ts} +0 -0
- /package/{textarea/textarea.d.ts → Textarea/CovalentTextArea.d.ts} +0 -0
- /package/{textfield/textfield.d.ts → Textfield/CovalentTextField.d.ts} +0 -0
- /package/{toolbar/toolbar.d.ts → Toolbar/CovalentToolbar.d.ts} +0 -0
- /package/{tooltip/tooltip.d.ts → Tooltip/CovalentTooltip.d.ts} +0 -0
- /package/{top-app-bar/top-app-bar.d.ts → TopAppBar/CovalentTopAppBar.d.ts} +0 -0
- /package/{top-app-bar-fixed/top-app-bar-fixed.d.ts → TopAppBar/CovalentTopAppBarFixed.d.ts} +0 -0
- /package/{tree-list/tree-list.d.ts → TreeList/CovalentTreeList.d.ts} +0 -0
- /package/{tree-list/tree-list-item.d.ts → TreeList/CovalentTreeListItem.d.ts} +0 -0
- /package/{typography/typography.d.ts → Typography/CovalentTypography.d.ts} +0 -0
package/index.mjs
CHANGED
|
@@ -1,268 +1,432 @@
|
|
|
1
1
|
import * as e from "react";
|
|
2
|
-
import { CovalentActionRibbon as
|
|
2
|
+
import { CovalentActionRibbon as S, CovalentAlert as T, CovalentAppShell as b, CovalentBadge as I, CovalentButton as f, CovalentCard as x, CovalentCheckbox as L, CovalentCheckListItem as k, CovalentChip as y, CovalentChipSet as B, CovalentCircularProgress as R, CovalentCodeEditor as E, CovalentCodeSnippet as A, CovalentDialog as P, CovalentDrawer as F, CovalentEmptyState as w, CovalentExpansionPanel as D, CovalentExpansionPanelItem as q, CovalentFocusedPage as H, CovalentFormfield as M, CovalentFullscreenDialog as j, CovalentIcon as O, CovalentIconButton as W, CovalentIconButtonToggle as z, CovalentIconCheckToggle as G, CovalentIconRadioToggle as J, CovalentLinearProgress as K, CovalentList as Q, CovalentListItem as U, CovalentMenu as V, CovalentNavRailListItem as X, CovalentNotebookCell as Y, CovalentRadio as Z, CovalentRadioListItem as _, CovalentSelect as ee, CovalentSideSheet as te, CovalentSlider as ae, CovalentSliderRange as ne, CovalentSnackbar as oe, CovalentStatusDialog as le, CovalentStatusHeader as se, CovalentStatusHeaderItem as ce, CovalentSwitch as ve, CovalentTab as Ce, CovalentTabBar as re, CovalentTextArea as ie, CovalentTextField as ge, CovalentTextLockup as me, CovalentToolbar as de, CovalentTooltip as pe, CovalentTopAppBar as ue, CovalentTopAppBarFixed as Ne, CovalentTreeList as he, CovalentTreeListItem as $e, CovalentTypography as Se } from "@covalent/components";
|
|
3
3
|
/**
|
|
4
4
|
* @license
|
|
5
5
|
* Copyright 2018 Google LLC
|
|
6
6
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
7
7
|
*/
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
|
|
11
|
-
let
|
|
12
|
-
|
|
13
|
-
let
|
|
14
|
-
|
|
15
|
-
})(
|
|
16
|
-
}, t = ({ react:
|
|
17
|
-
const
|
|
18
|
-
const
|
|
19
|
-
for (const [a,
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
}), n.useLayoutEffect(() => {
|
|
8
|
+
const Te = /* @__PURE__ */ new Set(["children", "localName", "ref", "style", "className"]), N = /* @__PURE__ */ new WeakMap(), h = (l, i, C, g, m) => {
|
|
9
|
+
const d = m == null ? void 0 : m[i];
|
|
10
|
+
d === void 0 ? (l[i] = C, C == null && i in HTMLElement.prototype && l.removeAttribute(i)) : C !== g && ((r, c, v) => {
|
|
11
|
+
let s = N.get(r);
|
|
12
|
+
s === void 0 && N.set(r, s = /* @__PURE__ */ new Map());
|
|
13
|
+
let n = s.get(c);
|
|
14
|
+
v !== void 0 ? n === void 0 ? (s.set(c, n = { handleEvent: v }), r.addEventListener(c, n)) : n.handleEvent = v : n !== void 0 && (s.delete(c), r.removeEventListener(c, n));
|
|
15
|
+
})(l, d, C);
|
|
16
|
+
}, t = ({ react: l, tagName: i, elementClass: C, events: g, displayName: m }) => {
|
|
17
|
+
const d = new Set(Object.keys(g ?? {})), r = l.forwardRef((c, v) => {
|
|
18
|
+
const s = l.useRef(/* @__PURE__ */ new Map()), n = l.useRef(null), p = {}, u = {};
|
|
19
|
+
for (const [a, o] of Object.entries(c)) Te.has(a) ? p[a === "className" ? "class" : a] = o : d.has(a) || a in C.prototype ? u[a] = o : p[a] = o;
|
|
20
|
+
return l.useLayoutEffect(() => {
|
|
21
|
+
if (n.current === null) return;
|
|
22
|
+
const a = /* @__PURE__ */ new Map();
|
|
23
|
+
for (const o in u) h(n.current, o, c[o], s.current.get(o), g), s.current.delete(o), a.set(o, c[o]);
|
|
24
|
+
for (const [o, $] of s.current) h(n.current, o, void 0, $, g);
|
|
25
|
+
s.current = a;
|
|
26
|
+
}), l.useLayoutEffect(() => {
|
|
28
27
|
var a;
|
|
29
|
-
(a =
|
|
30
|
-
}, []),
|
|
31
|
-
|
|
32
|
-
}, [
|
|
28
|
+
(a = n.current) == null || a.removeAttribute("defer-hydration");
|
|
29
|
+
}, []), p.suppressHydrationWarning = !0, l.createElement(i, { ...p, ref: l.useCallback((a) => {
|
|
30
|
+
n.current = a, typeof v == "function" ? v(a) : v !== null && (v.current = a);
|
|
31
|
+
}, [v]) });
|
|
33
32
|
});
|
|
34
|
-
return
|
|
35
|
-
},
|
|
33
|
+
return r.displayName = m ?? C.name, r;
|
|
34
|
+
}, Ie = t({
|
|
36
35
|
tagName: "cv-action-ribbon",
|
|
37
|
-
elementClass:
|
|
36
|
+
elementClass: S,
|
|
38
37
|
react: e
|
|
39
|
-
}),
|
|
38
|
+
}), fe = t({
|
|
40
39
|
tagName: "cv-alert",
|
|
41
|
-
elementClass:
|
|
40
|
+
elementClass: T,
|
|
42
41
|
react: e
|
|
43
|
-
}),
|
|
42
|
+
}), xe = t({
|
|
44
43
|
tagName: "cv-app-shell",
|
|
45
|
-
elementClass:
|
|
44
|
+
elementClass: b,
|
|
45
|
+
react: e,
|
|
46
|
+
events: {
|
|
47
|
+
ontoggle: "toggle"
|
|
48
|
+
}
|
|
49
|
+
}), Le = t({
|
|
50
|
+
tagName: "cv-badge",
|
|
51
|
+
elementClass: I,
|
|
46
52
|
react: e
|
|
47
|
-
}),
|
|
53
|
+
}), ke = t({
|
|
48
54
|
tagName: "cv-button",
|
|
49
|
-
elementClass:
|
|
50
|
-
react: e
|
|
51
|
-
}), ue = t({
|
|
52
|
-
tagName: "cv-checkbox",
|
|
53
|
-
elementClass: b,
|
|
55
|
+
elementClass: f,
|
|
54
56
|
react: e
|
|
55
|
-
}),
|
|
57
|
+
}), ye = t({
|
|
56
58
|
tagName: "cv-card",
|
|
57
|
-
elementClass:
|
|
59
|
+
elementClass: x,
|
|
58
60
|
react: e
|
|
59
|
-
}),
|
|
61
|
+
}), Be = t({
|
|
62
|
+
tagName: "cv-checkbox",
|
|
63
|
+
elementClass: L,
|
|
64
|
+
react: e,
|
|
65
|
+
events: {
|
|
66
|
+
onchange: "change"
|
|
67
|
+
}
|
|
68
|
+
}), Re = t({
|
|
69
|
+
tagName: "cv-check-list-item",
|
|
70
|
+
elementClass: k,
|
|
71
|
+
react: e,
|
|
72
|
+
events: {
|
|
73
|
+
onrequestSelected: "request-selected"
|
|
74
|
+
}
|
|
75
|
+
}), Ee = t({
|
|
60
76
|
tagName: "cv-chip",
|
|
61
|
-
elementClass:
|
|
77
|
+
elementClass: y,
|
|
62
78
|
react: e
|
|
63
|
-
}),
|
|
79
|
+
}), Ae = t({
|
|
64
80
|
tagName: "cv-chip-set",
|
|
65
|
-
elementClass:
|
|
81
|
+
elementClass: B,
|
|
66
82
|
react: e
|
|
67
|
-
}),
|
|
83
|
+
}), Pe = t({
|
|
68
84
|
tagName: "cv-circular-progress",
|
|
69
|
-
elementClass:
|
|
85
|
+
elementClass: R,
|
|
70
86
|
react: e
|
|
71
|
-
}),
|
|
87
|
+
}), Fe = t({
|
|
88
|
+
tagName: "cv-code-editor",
|
|
89
|
+
elementClass: E,
|
|
90
|
+
react: e,
|
|
91
|
+
events: {
|
|
92
|
+
oneditorReady: "editor-ready",
|
|
93
|
+
oneditorFocus: "editor-focus",
|
|
94
|
+
oneditorBlur: "editor-blur",
|
|
95
|
+
oncodeChange: "code-change"
|
|
96
|
+
}
|
|
97
|
+
}), we = t({
|
|
72
98
|
tagName: "cv-code-snippet",
|
|
73
|
-
elementClass:
|
|
99
|
+
elementClass: A,
|
|
74
100
|
react: e
|
|
75
|
-
}),
|
|
101
|
+
}), De = t({
|
|
76
102
|
tagName: "cv-dialog",
|
|
77
|
-
elementClass:
|
|
78
|
-
react: e
|
|
79
|
-
|
|
103
|
+
elementClass: P,
|
|
104
|
+
react: e,
|
|
105
|
+
events: {
|
|
106
|
+
onopening: "opening",
|
|
107
|
+
onopened: "opened",
|
|
108
|
+
onclosing: "closing",
|
|
109
|
+
onclosed: "closed"
|
|
110
|
+
}
|
|
111
|
+
}), qe = t({
|
|
80
112
|
tagName: "cv-drawer",
|
|
81
|
-
elementClass:
|
|
82
|
-
react: e
|
|
83
|
-
|
|
113
|
+
elementClass: F,
|
|
114
|
+
react: e,
|
|
115
|
+
events: {
|
|
116
|
+
onopened: "opened",
|
|
117
|
+
onclosed: "closed"
|
|
118
|
+
}
|
|
119
|
+
}), He = t({
|
|
84
120
|
tagName: "cv-empty-state",
|
|
85
|
-
elementClass: A,
|
|
86
|
-
react: e
|
|
87
|
-
}), ke = t({
|
|
88
|
-
tagName: "cv-icon",
|
|
89
|
-
elementClass: B,
|
|
90
|
-
react: e
|
|
91
|
-
}), ye = t({
|
|
92
|
-
tagName: "cv-icon-button",
|
|
93
121
|
elementClass: w,
|
|
94
122
|
react: e
|
|
95
|
-
}),
|
|
96
|
-
tagName: "cv-
|
|
97
|
-
elementClass: E,
|
|
98
|
-
react: e
|
|
99
|
-
}), Re = t({
|
|
100
|
-
tagName: "cv-icon-radio-item",
|
|
101
|
-
elementClass: H,
|
|
102
|
-
react: e
|
|
103
|
-
}), xe = t({
|
|
104
|
-
tagName: "cv-linear-progress",
|
|
123
|
+
}), Me = t({
|
|
124
|
+
tagName: "cv-expansion-panel",
|
|
105
125
|
elementClass: D,
|
|
106
126
|
react: e
|
|
107
|
-
}),
|
|
108
|
-
tagName: "cv-
|
|
109
|
-
elementClass:
|
|
127
|
+
}), je = t({
|
|
128
|
+
tagName: "cv-expansion-panel-item",
|
|
129
|
+
elementClass: q,
|
|
130
|
+
react: e,
|
|
131
|
+
events: {
|
|
132
|
+
oncvExpansionPanelTogglePanel: "cv-expansionPanel-togglePanel"
|
|
133
|
+
}
|
|
134
|
+
}), Oe = t({
|
|
135
|
+
tagName: "cv-focused-page",
|
|
136
|
+
elementClass: H,
|
|
110
137
|
react: e
|
|
111
|
-
}),
|
|
112
|
-
tagName: "cv-
|
|
138
|
+
}), We = t({
|
|
139
|
+
tagName: "cv-formfield",
|
|
113
140
|
elementClass: M,
|
|
114
141
|
react: e
|
|
115
|
-
}),
|
|
116
|
-
tagName: "cv-
|
|
117
|
-
elementClass: P,
|
|
118
|
-
react: e
|
|
119
|
-
}), Ee = t({
|
|
120
|
-
tagName: "cv-nav-list-item",
|
|
142
|
+
}), ze = t({
|
|
143
|
+
tagName: "cv-full-screen-dialog",
|
|
121
144
|
elementClass: j,
|
|
122
|
-
react: e
|
|
123
|
-
|
|
124
|
-
|
|
145
|
+
react: e,
|
|
146
|
+
events: {
|
|
147
|
+
onopening: "opening",
|
|
148
|
+
onopened: "opened",
|
|
149
|
+
onclosing: "closing",
|
|
150
|
+
onclosed: "closed"
|
|
151
|
+
}
|
|
152
|
+
}), Ge = t({
|
|
153
|
+
tagName: "cv-icon",
|
|
125
154
|
elementClass: O,
|
|
126
155
|
react: e
|
|
127
|
-
}),
|
|
128
|
-
tagName: "cv-
|
|
156
|
+
}), Je = t({
|
|
157
|
+
tagName: "cv-icon-button",
|
|
129
158
|
elementClass: W,
|
|
130
159
|
react: e
|
|
131
|
-
}),
|
|
132
|
-
tagName: "cv-
|
|
133
|
-
elementClass: q,
|
|
134
|
-
react: e
|
|
135
|
-
}), Me = t({
|
|
136
|
-
tagName: "cv-select",
|
|
160
|
+
}), Ke = t({
|
|
161
|
+
tagName: "cv-icon-button-toggle",
|
|
137
162
|
elementClass: z,
|
|
138
|
-
react: e
|
|
139
|
-
|
|
140
|
-
|
|
163
|
+
react: e,
|
|
164
|
+
events: {
|
|
165
|
+
oniconButtonToggleChange: "icon-button-toggle-change"
|
|
166
|
+
}
|
|
167
|
+
}), Qe = t({
|
|
168
|
+
tagName: "cv-checkbox-icon",
|
|
141
169
|
elementClass: G,
|
|
142
170
|
react: e,
|
|
143
171
|
events: {
|
|
144
|
-
|
|
145
|
-
opened: "opened",
|
|
146
|
-
closing: "closing",
|
|
147
|
-
closed: "closed"
|
|
172
|
+
onchange: "change"
|
|
148
173
|
}
|
|
149
|
-
}),
|
|
150
|
-
tagName: "cv-
|
|
174
|
+
}), Ue = t({
|
|
175
|
+
tagName: "cv-radio-icon",
|
|
151
176
|
elementClass: J,
|
|
152
|
-
react: e
|
|
153
|
-
|
|
154
|
-
|
|
177
|
+
react: e,
|
|
178
|
+
events: {
|
|
179
|
+
onchange: "change"
|
|
180
|
+
}
|
|
181
|
+
}), Ve = t({
|
|
182
|
+
tagName: "cv-linear-progress",
|
|
155
183
|
elementClass: K,
|
|
156
184
|
react: e
|
|
157
|
-
}),
|
|
158
|
-
tagName: "cv-
|
|
185
|
+
}), Xe = t({
|
|
186
|
+
tagName: "cv-list",
|
|
159
187
|
elementClass: Q,
|
|
188
|
+
react: e,
|
|
189
|
+
events: {
|
|
190
|
+
onaction: "action",
|
|
191
|
+
onselected: "selected"
|
|
192
|
+
}
|
|
193
|
+
}), Ye = t({
|
|
194
|
+
tagName: "cv-list-item",
|
|
195
|
+
elementClass: U,
|
|
196
|
+
react: e,
|
|
197
|
+
events: {
|
|
198
|
+
onrequestSelected: "request-selected"
|
|
199
|
+
}
|
|
200
|
+
}), Ze = t({
|
|
201
|
+
tagName: "cv-menu",
|
|
202
|
+
elementClass: V,
|
|
203
|
+
react: e,
|
|
204
|
+
events: {
|
|
205
|
+
onopened: "opened",
|
|
206
|
+
onclosing: "closing",
|
|
207
|
+
onclosed: "closed",
|
|
208
|
+
onaction: "action",
|
|
209
|
+
onselected: "selected"
|
|
210
|
+
}
|
|
211
|
+
}), _e = t({
|
|
212
|
+
tagName: "cv-nav-list-item",
|
|
213
|
+
elementClass: X,
|
|
214
|
+
react: e,
|
|
215
|
+
events: {
|
|
216
|
+
onrequestSelected: "request-selected"
|
|
217
|
+
}
|
|
218
|
+
}), et = t({
|
|
219
|
+
tagName: "cv-notebook-cell",
|
|
220
|
+
elementClass: Y,
|
|
160
221
|
react: e
|
|
161
|
-
}),
|
|
222
|
+
}), tt = t({
|
|
223
|
+
tagName: "cv-radio",
|
|
224
|
+
elementClass: Z,
|
|
225
|
+
react: e,
|
|
226
|
+
events: {
|
|
227
|
+
onchange: "change"
|
|
228
|
+
}
|
|
229
|
+
}), at = t({
|
|
230
|
+
tagName: "cv-radio-list-item",
|
|
231
|
+
elementClass: _,
|
|
232
|
+
react: e,
|
|
233
|
+
events: {
|
|
234
|
+
onrequestSelected: "request-selected"
|
|
235
|
+
}
|
|
236
|
+
}), nt = t({
|
|
237
|
+
tagName: "cv-select",
|
|
238
|
+
elementClass: ee,
|
|
239
|
+
react: e,
|
|
240
|
+
events: {
|
|
241
|
+
onopened: "opened",
|
|
242
|
+
onclosed: "closed",
|
|
243
|
+
onselected: "selected"
|
|
244
|
+
}
|
|
245
|
+
}), ot = t({
|
|
246
|
+
tagName: "cv-side-sheet",
|
|
247
|
+
elementClass: te,
|
|
248
|
+
react: e,
|
|
249
|
+
events: {
|
|
250
|
+
onopening: "opening",
|
|
251
|
+
onopened: "opened",
|
|
252
|
+
onclosing: "closing",
|
|
253
|
+
onclosed: "closed"
|
|
254
|
+
}
|
|
255
|
+
}), lt = t({
|
|
256
|
+
tagName: "cv-slider",
|
|
257
|
+
elementClass: ae,
|
|
258
|
+
react: e,
|
|
259
|
+
events: {
|
|
260
|
+
oninput: "input",
|
|
261
|
+
onchange: "change"
|
|
262
|
+
}
|
|
263
|
+
}), st = t({
|
|
264
|
+
tagName: "cv-slider-range",
|
|
265
|
+
elementClass: ne,
|
|
266
|
+
react: e,
|
|
267
|
+
events: {
|
|
268
|
+
oninput: "input",
|
|
269
|
+
onchange: "change"
|
|
270
|
+
}
|
|
271
|
+
}), ct = t({
|
|
272
|
+
tagName: "cv-snackbar",
|
|
273
|
+
elementClass: oe,
|
|
274
|
+
react: e,
|
|
275
|
+
events: {
|
|
276
|
+
onopening: "opening",
|
|
277
|
+
onopened: "opened",
|
|
278
|
+
onclosing: "closing",
|
|
279
|
+
onclosed: "closed"
|
|
280
|
+
}
|
|
281
|
+
}), vt = t({
|
|
282
|
+
tagName: "cv-status-dialog",
|
|
283
|
+
elementClass: le,
|
|
284
|
+
react: e,
|
|
285
|
+
events: {
|
|
286
|
+
onopening: "opening",
|
|
287
|
+
onopened: "opened",
|
|
288
|
+
onclosing: "closing",
|
|
289
|
+
onclosed: "closed"
|
|
290
|
+
}
|
|
291
|
+
}), Ct = t({
|
|
162
292
|
tagName: "cv-status-header",
|
|
163
|
-
elementClass:
|
|
293
|
+
elementClass: se,
|
|
164
294
|
react: e
|
|
165
|
-
}),
|
|
295
|
+
}), rt = t({
|
|
166
296
|
tagName: "cv-status-header-item",
|
|
167
|
-
elementClass:
|
|
297
|
+
elementClass: ce,
|
|
168
298
|
react: e
|
|
169
|
-
}),
|
|
299
|
+
}), it = t({
|
|
170
300
|
tagName: "cv-switch",
|
|
171
|
-
elementClass:
|
|
301
|
+
elementClass: ve,
|
|
172
302
|
react: e
|
|
173
|
-
}),
|
|
303
|
+
}), gt = t({
|
|
174
304
|
tagName: "cv-tab",
|
|
175
|
-
elementClass:
|
|
176
|
-
react: e
|
|
177
|
-
|
|
305
|
+
elementClass: Ce,
|
|
306
|
+
react: e,
|
|
307
|
+
events: {
|
|
308
|
+
oninteracted: "interacted"
|
|
309
|
+
}
|
|
310
|
+
}), mt = t({
|
|
178
311
|
tagName: "cv-tab-bar",
|
|
179
|
-
elementClass:
|
|
180
|
-
react: e
|
|
181
|
-
|
|
312
|
+
elementClass: re,
|
|
313
|
+
react: e,
|
|
314
|
+
events: {
|
|
315
|
+
onactivated: "activated"
|
|
316
|
+
}
|
|
317
|
+
}), dt = t({
|
|
182
318
|
tagName: "cv-textarea",
|
|
183
|
-
elementClass:
|
|
319
|
+
elementClass: ie,
|
|
184
320
|
react: e
|
|
185
|
-
}),
|
|
321
|
+
}), pt = t({
|
|
186
322
|
tagName: "cv-textfield",
|
|
187
|
-
elementClass:
|
|
323
|
+
elementClass: ge,
|
|
188
324
|
react: e
|
|
189
|
-
}),
|
|
325
|
+
}), ut = t({
|
|
190
326
|
tagName: "cv-text-lockup",
|
|
191
|
-
elementClass:
|
|
327
|
+
elementClass: me,
|
|
192
328
|
react: e
|
|
193
|
-
}),
|
|
329
|
+
}), Nt = t({
|
|
194
330
|
tagName: "cv-toolbar",
|
|
195
|
-
elementClass:
|
|
196
|
-
react: e
|
|
197
|
-
|
|
331
|
+
elementClass: de,
|
|
332
|
+
react: e,
|
|
333
|
+
events: {
|
|
334
|
+
onnav: "nav"
|
|
335
|
+
}
|
|
336
|
+
}), ht = t({
|
|
198
337
|
tagName: "cv-tooltip",
|
|
199
|
-
elementClass:
|
|
338
|
+
elementClass: pe,
|
|
200
339
|
react: e
|
|
201
|
-
}),
|
|
340
|
+
}), $t = t({
|
|
202
341
|
tagName: "cv-top-app-bar",
|
|
203
|
-
elementClass:
|
|
204
|
-
react: e
|
|
205
|
-
|
|
342
|
+
elementClass: ue,
|
|
343
|
+
react: e,
|
|
344
|
+
events: {
|
|
345
|
+
onnav: "nav"
|
|
346
|
+
}
|
|
347
|
+
}), St = t({
|
|
206
348
|
tagName: "cv-top-app-bar-fixed",
|
|
207
|
-
elementClass:
|
|
208
|
-
react: e
|
|
209
|
-
|
|
349
|
+
elementClass: Ne,
|
|
350
|
+
react: e,
|
|
351
|
+
events: {
|
|
352
|
+
onnav: "nav"
|
|
353
|
+
}
|
|
354
|
+
}), Tt = t({
|
|
210
355
|
tagName: "cv-tree-list",
|
|
211
|
-
elementClass:
|
|
212
|
-
react: e
|
|
213
|
-
|
|
356
|
+
elementClass: he,
|
|
357
|
+
react: e,
|
|
358
|
+
events: {
|
|
359
|
+
onnav: "nav"
|
|
360
|
+
}
|
|
361
|
+
}), bt = t({
|
|
214
362
|
tagName: "cv-tree-list-item",
|
|
215
|
-
elementClass:
|
|
216
|
-
react: e
|
|
217
|
-
|
|
363
|
+
elementClass: $e,
|
|
364
|
+
react: e,
|
|
365
|
+
events: {
|
|
366
|
+
onselect: "select"
|
|
367
|
+
}
|
|
368
|
+
}), It = t({
|
|
218
369
|
tagName: "cv-typography",
|
|
219
|
-
elementClass:
|
|
220
|
-
react: e
|
|
370
|
+
elementClass: Se,
|
|
371
|
+
react: e,
|
|
372
|
+
events: {
|
|
373
|
+
onselect: "select"
|
|
374
|
+
}
|
|
221
375
|
});
|
|
222
376
|
export {
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
377
|
+
Ie as CovalentActionRibbon,
|
|
378
|
+
fe as CovalentAlert,
|
|
379
|
+
xe as CovalentAppShell,
|
|
380
|
+
Le as CovalentBadge,
|
|
381
|
+
ke as CovalentButton,
|
|
382
|
+
ye as CovalentCard,
|
|
383
|
+
Re as CovalentCheckListItem,
|
|
384
|
+
Be as CovalentCheckbox,
|
|
385
|
+
Ee as CovalentChip,
|
|
386
|
+
Ae as CovalentChipSet,
|
|
387
|
+
Pe as CovalentCircularProgress,
|
|
388
|
+
Fe as CovalentCodeEditor,
|
|
389
|
+
we as CovalentCodeSnippet,
|
|
390
|
+
De as CovalentDialog,
|
|
391
|
+
qe as CovalentDrawer,
|
|
392
|
+
He as CovalentEmptyState,
|
|
393
|
+
Me as CovalentExpansionPanel,
|
|
394
|
+
je as CovalentExpansionPanelItem,
|
|
395
|
+
Oe as CovalentFocusedPage,
|
|
396
|
+
We as CovalentFormfield,
|
|
397
|
+
ze as CovalentFullscreenDialog,
|
|
398
|
+
Ge as CovalentIcon,
|
|
399
|
+
Je as CovalentIconButton,
|
|
400
|
+
Ke as CovalentIconButtonToggle,
|
|
401
|
+
Qe as CovalentIconCheckToggle,
|
|
402
|
+
Ue as CovalentIconRadioToggle,
|
|
403
|
+
Ve as CovalentLinearProgress,
|
|
404
|
+
Xe as CovalentList,
|
|
405
|
+
Ye as CovalentListItem,
|
|
406
|
+
Ze as CovalentMenu,
|
|
407
|
+
_e as CovalentNavRailListItem,
|
|
408
|
+
et as CovalentNotebookCell,
|
|
409
|
+
tt as CovalentRadio,
|
|
410
|
+
at as CovalentRadioListItem,
|
|
411
|
+
nt as CovalentSelect,
|
|
412
|
+
ot as CovalentSideSheet,
|
|
413
|
+
lt as CovalentSlider,
|
|
414
|
+
st as CovalentSliderRange,
|
|
415
|
+
ct as CovalentSnackbar,
|
|
416
|
+
vt as CovalentStatusDialog,
|
|
417
|
+
Ct as CovalentStatusHeader,
|
|
418
|
+
rt as CovalentStatusHeaderItem,
|
|
419
|
+
it as CovalentSwitch,
|
|
420
|
+
gt as CovalentTab,
|
|
421
|
+
mt as CovalentTabBar,
|
|
422
|
+
dt as CovalentTextArea,
|
|
423
|
+
pt as CovalentTextField,
|
|
424
|
+
ut as CovalentTextLockup,
|
|
425
|
+
Nt as CovalentToolbar,
|
|
426
|
+
ht as CovalentTooltip,
|
|
427
|
+
$t as CovalentTopAppBar,
|
|
428
|
+
St as CovalentTopAppBarFixed,
|
|
429
|
+
Tt as CovalentTreeList,
|
|
430
|
+
bt as CovalentTreeListItem,
|
|
431
|
+
It as CovalentTypography
|
|
268
432
|
};
|
package/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@covalent/components-react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "9.0.0-beta.4",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@covalent/components": "latest"
|
|
6
|
-
"react": "^18.2.0"
|
|
5
|
+
"@covalent/components": "latest"
|
|
7
6
|
},
|
|
8
7
|
"main": "./index.js",
|
|
9
8
|
"module": "./index.mjs",
|
|
10
9
|
"typings": "./index.d.ts"
|
|
11
|
-
}
|
|
10
|
+
}
|