@phillips/seldon 1.213.0 → 1.214.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.
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
interface ClockProps extends React.HTMLAttributes<SVGSVGElement> {
|
|
2
|
+
color?: string;
|
|
3
|
+
height?: number | string;
|
|
4
|
+
width?: number | string;
|
|
5
|
+
title?: string;
|
|
6
|
+
titleId?: string;
|
|
7
|
+
}
|
|
8
|
+
declare const Clock: import('react').MemoExoticComponent<import('react').ForwardRefExoticComponent<ClockProps & import('react').RefAttributes<SVGSVGElement>>>;
|
|
9
|
+
export default Clock;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { jsxs as s, jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import { memo as n, forwardRef as f } from "react";
|
|
3
|
+
import { kebabCase as h } from "../../node_modules/change-case/dist/index.js";
|
|
4
|
+
const g = n(
|
|
5
|
+
f((t, i) => {
|
|
6
|
+
const { color: r, height: a, width: d, title: l, titleId: m } = t, e = m || h(l || "");
|
|
7
|
+
return /* @__PURE__ */ s(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11
|
+
fill: "none",
|
|
12
|
+
viewBox: "0 0 19 19",
|
|
13
|
+
height: a,
|
|
14
|
+
width: d,
|
|
15
|
+
role: "img",
|
|
16
|
+
ref: i,
|
|
17
|
+
"aria-labelledby": e,
|
|
18
|
+
...t,
|
|
19
|
+
children: [
|
|
20
|
+
l ? /* @__PURE__ */ o("title", { id: e, children: l }) : null,
|
|
21
|
+
/* @__PURE__ */ o(
|
|
22
|
+
"path",
|
|
23
|
+
{
|
|
24
|
+
fill: r,
|
|
25
|
+
d: "M9.906 1.595A7.917 7.917 0 0 1 17.415 9.5l-.01.407A7.917 7.917 0 0 1 9.5 17.417l-.408-.01a7.917 7.917 0 0 1-7.498-7.499l-.011-.407a7.92 7.92 0 0 1 7.917-7.917zM9.5 3.084A6.418 6.418 0 1 0 9.5 15.919 6.418 6.418 0 0 0 9.5 3.084m.79 6.874L6.716 13.46l-1.177-1.153 3.085-3.024v-3.74h1.665z"
|
|
26
|
+
}
|
|
27
|
+
)
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
);
|
|
31
|
+
})
|
|
32
|
+
);
|
|
33
|
+
export {
|
|
34
|
+
g as default
|
|
35
|
+
};
|
|
@@ -78,4 +78,5 @@ export { default as VolumeMaximum } from './VolumeMaximum';
|
|
|
78
78
|
export { default as VolumeMid } from './VolumeMid';
|
|
79
79
|
export { default as VolumeMinimum } from './VolumeMinimum';
|
|
80
80
|
export { default as WeChat } from './WeChat';
|
|
81
|
+
export { default as Clock } from './Clock';
|
|
81
82
|
export { default as LiveNow } from './LiveNow';
|
|
@@ -11,8 +11,8 @@ import { default as w } from "./AdminFullscreenExit.js";
|
|
|
11
11
|
import { default as S } from "./AdminCheck.js";
|
|
12
12
|
import { default as F } from "./AdminChevronLeft.js";
|
|
13
13
|
import { default as P } from "./AdminChevronRight.js";
|
|
14
|
-
import { default as
|
|
15
|
-
import { default as
|
|
14
|
+
import { default as k } from "./AdminChevronUp.js";
|
|
15
|
+
import { default as M } from "./AdminClose.js";
|
|
16
16
|
import { default as D } from "./AdminHome.js";
|
|
17
17
|
import { default as U } from "./AdminPencil.js";
|
|
18
18
|
import { default as B } from "./AdminSearch.js";
|
|
@@ -38,8 +38,8 @@ import { default as we } from "./ExternalLink.js";
|
|
|
38
38
|
import { default as Se } from "./Facebook.js";
|
|
39
39
|
import { default as Fe } from "./FavoriteActive.js";
|
|
40
40
|
import { default as Pe } from "./Favorite.js";
|
|
41
|
-
import { default as
|
|
42
|
-
import { default as
|
|
41
|
+
import { default as ke } from "./Filters.js";
|
|
42
|
+
import { default as Me } from "./Fullscreen.js";
|
|
43
43
|
import { default as De } from "./FullscreenExit.js";
|
|
44
44
|
import { default as Ue } from "./GavelActive.js";
|
|
45
45
|
import { default as Be } from "./Gavel.js";
|
|
@@ -65,7 +65,7 @@ import { default as Lo } from "./Play.js";
|
|
|
65
65
|
import { default as go } from "./Red.js";
|
|
66
66
|
import { default as Io } from "./Refresh.js";
|
|
67
67
|
import { default as Ro } from "./Search.js";
|
|
68
|
-
import { default as
|
|
68
|
+
import { default as Eo } from "./SellActive.js";
|
|
69
69
|
import { default as Go } from "./Sell.js";
|
|
70
70
|
import { default as Ho } from "./Share.js";
|
|
71
71
|
import { default as Vo } from "./Subtract.js";
|
|
@@ -78,7 +78,8 @@ import { default as Jo } from "./VolumeMaximum.js";
|
|
|
78
78
|
import { default as Qo } from "./VolumeMid.js";
|
|
79
79
|
import { default as Zo } from "./VolumeMinimum.js";
|
|
80
80
|
import { default as $o } from "./WeChat.js";
|
|
81
|
-
import { default as or } from "./
|
|
81
|
+
import { default as or } from "./Clock.js";
|
|
82
|
+
import { default as tr } from "./LiveNow.js";
|
|
82
83
|
export {
|
|
83
84
|
a as Account,
|
|
84
85
|
r as AccountActive,
|
|
@@ -86,8 +87,8 @@ export {
|
|
|
86
87
|
S as AdminCheck,
|
|
87
88
|
F as AdminChevronLeft,
|
|
88
89
|
P as AdminChevronRight,
|
|
89
|
-
|
|
90
|
-
|
|
90
|
+
k as AdminChevronUp,
|
|
91
|
+
M as AdminClose,
|
|
91
92
|
h as AdminFullscreen,
|
|
92
93
|
w as AdminFullscreenExit,
|
|
93
94
|
m as AdminGavel,
|
|
@@ -109,6 +110,7 @@ export {
|
|
|
109
110
|
ee as ChevronLeft,
|
|
110
111
|
re as ChevronRight,
|
|
111
112
|
ae as ChevronUp,
|
|
113
|
+
or as Clock,
|
|
112
114
|
le as CloseX,
|
|
113
115
|
me as ConditionReport,
|
|
114
116
|
se as Delete,
|
|
@@ -120,8 +122,8 @@ export {
|
|
|
120
122
|
Se as Facebook,
|
|
121
123
|
Pe as Favorite,
|
|
122
124
|
Fe as FavoriteActive,
|
|
123
|
-
|
|
124
|
-
|
|
125
|
+
ke as Filters,
|
|
126
|
+
Me as Fullscreen,
|
|
125
127
|
De as FullscreenExit,
|
|
126
128
|
Be as Gavel,
|
|
127
129
|
Ue as GavelActive,
|
|
@@ -136,7 +138,7 @@ export {
|
|
|
136
138
|
eo as Instagram,
|
|
137
139
|
ro as LinkedIn,
|
|
138
140
|
ao as List,
|
|
139
|
-
|
|
141
|
+
tr as LiveNow,
|
|
140
142
|
lo as Lock,
|
|
141
143
|
uo as MagnificentSeven,
|
|
142
144
|
po as Menu,
|
|
@@ -149,7 +151,7 @@ export {
|
|
|
149
151
|
Io as Refresh,
|
|
150
152
|
Ro as Search,
|
|
151
153
|
Go as Sell,
|
|
152
|
-
|
|
154
|
+
Eo as SellActive,
|
|
153
155
|
Ho as Share,
|
|
154
156
|
Vo as Subtract,
|
|
155
157
|
To as Success,
|
|
@@ -84,6 +84,7 @@ import "../../assets/formatted/VolumeMaximum.js";
|
|
|
84
84
|
import "../../assets/formatted/VolumeMid.js";
|
|
85
85
|
import "../../assets/formatted/VolumeMinimum.js";
|
|
86
86
|
import "../../assets/formatted/WeChat.js";
|
|
87
|
+
import "../../assets/formatted/Clock.js";
|
|
87
88
|
import "../../assets/formatted/LiveNow.js";
|
|
88
89
|
import { getCommonProps as xt, useNormalizedInputProps as Lt } from "../../utils/index.js";
|
|
89
90
|
import U from "../IconButton/IconButton.js";
|