@phillips/seldon 1.170.0 → 1.171.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/dist/assets/formatted/AdminCheck.d.ts +9 -0
- package/dist/assets/formatted/AdminCheck.js +29 -0
- package/dist/assets/formatted/AdminChevronLeft.d.ts +9 -0
- package/dist/assets/formatted/AdminChevronLeft.js +29 -0
- package/dist/assets/formatted/AdminChevronRight.d.ts +9 -0
- package/dist/assets/formatted/AdminChevronRight.js +29 -0
- package/dist/assets/formatted/AdminChevronUp.d.ts +9 -0
- package/dist/assets/formatted/AdminChevronUp.js +29 -0
- package/dist/assets/formatted/AdminClose.d.ts +9 -0
- package/dist/assets/formatted/AdminClose.js +35 -0
- package/dist/assets/formatted/AdminFullscreen.d.ts +9 -0
- package/dist/assets/formatted/AdminFullscreen.js +50 -0
- package/dist/assets/formatted/AdminFullscreenExit.d.ts +9 -0
- package/dist/assets/formatted/AdminFullscreenExit.js +50 -0
- package/dist/assets/formatted/AdminGavel.d.ts +9 -0
- package/dist/assets/formatted/AdminGavel.js +50 -0
- package/dist/assets/formatted/AdminHome.d.ts +9 -0
- package/dist/assets/formatted/AdminHome.js +35 -0
- package/dist/assets/formatted/AdminLiveOnline.d.ts +9 -0
- package/dist/assets/formatted/AdminLiveOnline.js +50 -0
- package/dist/assets/formatted/AdminPencil.d.ts +9 -0
- package/dist/assets/formatted/AdminPencil.js +35 -0
- package/dist/assets/formatted/AdminPerson.d.ts +9 -0
- package/dist/assets/formatted/AdminPerson.js +50 -0
- package/dist/assets/formatted/AdminPlay.d.ts +9 -0
- package/dist/assets/formatted/AdminPlay.js +44 -0
- package/dist/assets/formatted/AdminSearch.d.ts +9 -0
- package/dist/assets/formatted/AdminSearch.js +35 -0
- package/dist/assets/formatted/AdminTelephone.d.ts +9 -0
- package/dist/assets/formatted/AdminTelephone.js +50 -0
- package/dist/assets/formatted/index.d.ts +15 -0
- package/dist/assets/formatted/index.js +152 -122
- package/dist/components/ComboBox/ComboBox.js +74 -59
- package/dist/scss/_vars.scss +4 -0
- package/dist/scss/_vars.scss.js +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
interface AdminSearchProps 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 AdminSearch: import('react').MemoExoticComponent<import('react').ForwardRefExoticComponent<AdminSearchProps & import('react').RefAttributes<SVGSVGElement>>>;
|
|
9
|
+
export default AdminSearch;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { jsxs as n, jsx as i } from "react/jsx-runtime";
|
|
2
|
+
import { memo as s, forwardRef as a } from "react";
|
|
3
|
+
import { kebabCase as h } from "../../node_modules/change-case/dist/index.js";
|
|
4
|
+
const g = s(
|
|
5
|
+
a((t, o) => {
|
|
6
|
+
const { color: r, height: d, width: m, title: l, titleId: f } = t, e = f || h(l || "");
|
|
7
|
+
return /* @__PURE__ */ n(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11
|
+
fill: "none",
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
height: d,
|
|
14
|
+
width: m,
|
|
15
|
+
role: "img",
|
|
16
|
+
ref: o,
|
|
17
|
+
"aria-labelledby": e,
|
|
18
|
+
...t,
|
|
19
|
+
children: [
|
|
20
|
+
l ? /* @__PURE__ */ i("title", { id: e, children: l }) : null,
|
|
21
|
+
/* @__PURE__ */ i(
|
|
22
|
+
"path",
|
|
23
|
+
{
|
|
24
|
+
fill: r || "#fff",
|
|
25
|
+
d: "M15.5 14h-.79l-.28-.27A6.47 6.47 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14"
|
|
26
|
+
}
|
|
27
|
+
)
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
);
|
|
31
|
+
})
|
|
32
|
+
);
|
|
33
|
+
export {
|
|
34
|
+
g as default
|
|
35
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
interface AdminTelephoneProps 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 AdminTelephone: import('react').MemoExoticComponent<import('react').ForwardRefExoticComponent<AdminTelephoneProps & import('react').RefAttributes<SVGSVGElement>>>;
|
|
9
|
+
export default AdminTelephone;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { jsxs as d, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { memo as m, forwardRef as h } from "react";
|
|
3
|
+
import { kebabCase as p } from "../../node_modules/change-case/dist/index.js";
|
|
4
|
+
const q = m(
|
|
5
|
+
h((t, o) => {
|
|
6
|
+
const { color: i, height: r, width: s, title: l, titleId: n } = t, a = n || p(l || "");
|
|
7
|
+
return /* @__PURE__ */ d(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11
|
+
fill: "none",
|
|
12
|
+
viewBox: "0 0 24 25",
|
|
13
|
+
height: r,
|
|
14
|
+
width: s,
|
|
15
|
+
role: "img",
|
|
16
|
+
ref: o,
|
|
17
|
+
"aria-labelledby": a,
|
|
18
|
+
...t,
|
|
19
|
+
children: [
|
|
20
|
+
l ? /* @__PURE__ */ e("title", { id: a, children: l }) : null,
|
|
21
|
+
/* @__PURE__ */ e(
|
|
22
|
+
"mask",
|
|
23
|
+
{
|
|
24
|
+
id: "AdminTelephone_svg__a",
|
|
25
|
+
width: 24,
|
|
26
|
+
height: 25,
|
|
27
|
+
x: 0,
|
|
28
|
+
y: 0,
|
|
29
|
+
maskUnits: "userSpaceOnUse",
|
|
30
|
+
style: {
|
|
31
|
+
maskType: "alpha"
|
|
32
|
+
},
|
|
33
|
+
children: /* @__PURE__ */ e("path", { fill: i || "#D9D9D9", d: "M0 .625h24v24H0z" })
|
|
34
|
+
}
|
|
35
|
+
),
|
|
36
|
+
/* @__PURE__ */ e("g", { mask: "url(#AdminTelephone_svg__a)", children: /* @__PURE__ */ e(
|
|
37
|
+
"path",
|
|
38
|
+
{
|
|
39
|
+
fill: i || "#1C1B1F",
|
|
40
|
+
d: "M19.95 21.625q-3.125 0-6.175-1.363T8.225 16.4t-3.862-5.55T3 4.675q0-.45.3-.75t.75-.3H8.1a.93.93 0 0 1 .625.237.9.9 0 0 1 .325.563l.65 3.5q.05.4-.025.675t-.275.475l-2.425 2.45q.5.926 1.188 1.787.687.863 1.512 1.663.775.775 1.625 1.438.85.661 1.8 1.212l2.35-2.35a1.4 1.4 0 0 1 .588-.338 1.6 1.6 0 0 1 .712-.062l3.45.7q.35.1.575.363a.88.88 0 0 1 .225.587v4.05q0 .45-.3.75t-.75.3m-13.925-12 1.65-1.65-.425-2.35H5.025q.125 1.024.35 2.025t.65 1.975m8.95 8.95q.976.424 1.987.675 1.013.25 2.038.325v-2.2l-2.35-.475z"
|
|
41
|
+
}
|
|
42
|
+
) })
|
|
43
|
+
]
|
|
44
|
+
}
|
|
45
|
+
);
|
|
46
|
+
})
|
|
47
|
+
);
|
|
48
|
+
export {
|
|
49
|
+
q as default
|
|
50
|
+
};
|
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
export { default as AccountActive } from './AccountActive';
|
|
2
2
|
export { default as Account } from './Account';
|
|
3
3
|
export { default as Add } from './Add';
|
|
4
|
+
export { default as AdminGavel } from './AdminGavel';
|
|
5
|
+
export { default as AdminLiveOnline } from './AdminLiveOnline';
|
|
6
|
+
export { default as AdminPerson } from './AdminPerson';
|
|
7
|
+
export { default as AdminTelephone } from './AdminTelephone';
|
|
8
|
+
export { default as AdminPlay } from './AdminPlay';
|
|
9
|
+
export { default as AdminFullscreen } from './AdminFullscreen';
|
|
10
|
+
export { default as AdminFullscreenExit } from './AdminFullscreenExit';
|
|
11
|
+
export { default as AdminCheck } from './AdminCheck';
|
|
12
|
+
export { default as AdminChevronLeft } from './AdminChevronLeft';
|
|
13
|
+
export { default as AdminChevronRight } from './AdminChevronRight';
|
|
14
|
+
export { default as AdminChevronUp } from './AdminChevronUp';
|
|
15
|
+
export { default as AdminClose } from './AdminClose';
|
|
16
|
+
export { default as AdminHome } from './AdminHome';
|
|
17
|
+
export { default as AdminPencil } from './AdminPencil';
|
|
18
|
+
export { default as AdminSearch } from './AdminSearch';
|
|
4
19
|
export { default as AppleAppStoreBadge } from './AppleAppStoreBadge';
|
|
5
20
|
export { default as ArrowDown } from './ArrowDown';
|
|
6
21
|
export { default as ArrowLeft } from './ArrowLeft';
|
|
@@ -1,130 +1,160 @@
|
|
|
1
1
|
import { default as r } from "./AccountActive.js";
|
|
2
2
|
import { default as a } from "./Account.js";
|
|
3
3
|
import { default as l } from "./Add.js";
|
|
4
|
-
import { default as
|
|
5
|
-
import { default as
|
|
6
|
-
import { default as x } from "./
|
|
7
|
-
import { default as n } from "./
|
|
8
|
-
import { default as
|
|
9
|
-
import { default as
|
|
10
|
-
import { default as w } from "./
|
|
11
|
-
import { default as
|
|
12
|
-
import { default as F } from "./
|
|
13
|
-
import { default as
|
|
14
|
-
import { default as
|
|
15
|
-
import { default as
|
|
16
|
-
import { default as
|
|
17
|
-
import { default as
|
|
18
|
-
import { default as
|
|
19
|
-
import { default as
|
|
20
|
-
import { default as
|
|
21
|
-
import { default as
|
|
22
|
-
import { default as
|
|
23
|
-
import { default as
|
|
24
|
-
import { default as
|
|
25
|
-
import { default as Y } from "./
|
|
26
|
-
import { default as _ } from "./
|
|
27
|
-
import { default as ee } from "./
|
|
28
|
-
import { default as re } from "./
|
|
29
|
-
import { default as ae } from "./
|
|
30
|
-
import { default as le } from "./
|
|
31
|
-
import { default as
|
|
32
|
-
import { default as
|
|
33
|
-
import { default as xe } from "./
|
|
34
|
-
import { default as ne } from "./
|
|
35
|
-
import { default as
|
|
36
|
-
import { default as
|
|
37
|
-
import { default as we } from "./
|
|
38
|
-
import { default as
|
|
39
|
-
import { default as Fe } from "./
|
|
40
|
-
import { default as
|
|
41
|
-
import { default as
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as
|
|
45
|
-
import { default as
|
|
46
|
-
import { default as
|
|
47
|
-
import { default as
|
|
48
|
-
import { default as
|
|
49
|
-
import { default as
|
|
50
|
-
import { default as
|
|
51
|
-
import { default as
|
|
52
|
-
import { default as Ye } from "./
|
|
53
|
-
import { default as _e } from "./
|
|
54
|
-
import { default as eo } from "./
|
|
55
|
-
import { default as ro } from "./
|
|
56
|
-
import { default as ao } from "./
|
|
57
|
-
import { default as lo } from "./
|
|
58
|
-
import { default as
|
|
59
|
-
import { default as
|
|
60
|
-
import { default as io } from "./
|
|
61
|
-
import { default as
|
|
62
|
-
import { default as
|
|
63
|
-
import { default as Co } from "./
|
|
64
|
-
import { default as
|
|
4
|
+
import { default as m } from "./AdminGavel.js";
|
|
5
|
+
import { default as u } from "./AdminLiveOnline.js";
|
|
6
|
+
import { default as x } from "./AdminPerson.js";
|
|
7
|
+
import { default as n } from "./AdminTelephone.js";
|
|
8
|
+
import { default as c } from "./AdminPlay.js";
|
|
9
|
+
import { default as v } from "./AdminFullscreen.js";
|
|
10
|
+
import { default as w } from "./AdminFullscreenExit.js";
|
|
11
|
+
import { default as S } from "./AdminCheck.js";
|
|
12
|
+
import { default as F } from "./AdminChevronLeft.js";
|
|
13
|
+
import { default as R } from "./AdminChevronRight.js";
|
|
14
|
+
import { default as I } from "./AdminChevronUp.js";
|
|
15
|
+
import { default as k } from "./AdminClose.js";
|
|
16
|
+
import { default as D } from "./AdminHome.js";
|
|
17
|
+
import { default as U } from "./AdminPencil.js";
|
|
18
|
+
import { default as T } from "./AdminSearch.js";
|
|
19
|
+
import { default as y } from "./AppleAppStoreBadge.js";
|
|
20
|
+
import { default as X } from "./ArrowDown.js";
|
|
21
|
+
import { default as W } from "./ArrowLeft.js";
|
|
22
|
+
import { default as q } from "./ArrowRight.js";
|
|
23
|
+
import { default as J } from "./ArrowUp.js";
|
|
24
|
+
import { default as N } from "./Bag.js";
|
|
25
|
+
import { default as Y } from "./Calendar.js";
|
|
26
|
+
import { default as _ } from "./ChevronDown.js";
|
|
27
|
+
import { default as ee } from "./ChevronLeft.js";
|
|
28
|
+
import { default as re } from "./ChevronRight.js";
|
|
29
|
+
import { default as ae } from "./ChevronUp.js";
|
|
30
|
+
import { default as le } from "./CloseX.js";
|
|
31
|
+
import { default as me } from "./ConditionReport.js";
|
|
32
|
+
import { default as ue } from "./Delete.js";
|
|
33
|
+
import { default as xe } from "./Download.js";
|
|
34
|
+
import { default as ne } from "./Edit.js";
|
|
35
|
+
import { default as ce } from "./Email.js";
|
|
36
|
+
import { default as ve } from "./Error.js";
|
|
37
|
+
import { default as we } from "./ExternalLink.js";
|
|
38
|
+
import { default as Se } from "./Facebook.js";
|
|
39
|
+
import { default as Fe } from "./FavoriteActive.js";
|
|
40
|
+
import { default as Re } from "./Favorite.js";
|
|
41
|
+
import { default as Ie } from "./Filters.js";
|
|
42
|
+
import { default as ke } from "./Fullscreen.js";
|
|
43
|
+
import { default as De } from "./FullscreenExit.js";
|
|
44
|
+
import { default as Ue } from "./GavelActive.js";
|
|
45
|
+
import { default as Te } from "./Gavel.js";
|
|
46
|
+
import { default as ye } from "./Grid.js";
|
|
47
|
+
import { default as Xe } from "./Hide.js";
|
|
48
|
+
import { default as We } from "./HomeActive.js";
|
|
49
|
+
import { default as qe } from "./Home.js";
|
|
50
|
+
import { default as Je } from "./IconGreenCircle.js";
|
|
51
|
+
import { default as Ne } from "./IconRedCircle.js";
|
|
52
|
+
import { default as Ye } from "./Icon.js";
|
|
53
|
+
import { default as _e } from "./Instagram.js";
|
|
54
|
+
import { default as eo } from "./LinkedIn.js";
|
|
55
|
+
import { default as ro } from "./List.js";
|
|
56
|
+
import { default as ao } from "./Lock.js";
|
|
57
|
+
import { default as lo } from "./MagnificentSeven.js";
|
|
58
|
+
import { default as so } from "./Menu.js";
|
|
59
|
+
import { default as po } from "./Mute.js";
|
|
60
|
+
import { default as io } from "./Pause.js";
|
|
61
|
+
import { default as Ao } from "./PhillipsAppIcon.js";
|
|
62
|
+
import { default as ho } from "./PhillipsLogo.js";
|
|
63
|
+
import { default as Co } from "./Play.js";
|
|
64
|
+
import { default as Lo } from "./Red.js";
|
|
65
|
+
import { default as go } from "./Refresh.js";
|
|
66
|
+
import { default as Po } from "./Search.js";
|
|
67
|
+
import { default as Eo } from "./SellActive.js";
|
|
68
|
+
import { default as Mo } from "./Sell.js";
|
|
69
|
+
import { default as Go } from "./Share.js";
|
|
70
|
+
import { default as Ho } from "./Subtract.js";
|
|
71
|
+
import { default as Vo } from "./Success.js";
|
|
72
|
+
import { default as bo } from "./Tooltip.js";
|
|
73
|
+
import { default as Bo } from "./TwitterX.js";
|
|
74
|
+
import { default as Oo } from "./Upload.js";
|
|
75
|
+
import { default as jo } from "./View.js";
|
|
76
|
+
import { default as zo } from "./VolumeMaximum.js";
|
|
77
|
+
import { default as Ko } from "./VolumeMid.js";
|
|
78
|
+
import { default as Qo } from "./VolumeMinimum.js";
|
|
79
|
+
import { default as Zo } from "./WeChat.js";
|
|
65
80
|
export {
|
|
66
81
|
a as Account,
|
|
67
82
|
r as AccountActive,
|
|
68
83
|
l as Add,
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
w as
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
_ as
|
|
92
|
-
ee as
|
|
93
|
-
re as
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
eo as
|
|
120
|
-
ro as
|
|
121
|
-
ao as
|
|
122
|
-
lo as
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
io as
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
Co as
|
|
129
|
-
|
|
84
|
+
S as AdminCheck,
|
|
85
|
+
F as AdminChevronLeft,
|
|
86
|
+
R as AdminChevronRight,
|
|
87
|
+
I as AdminChevronUp,
|
|
88
|
+
k as AdminClose,
|
|
89
|
+
v as AdminFullscreen,
|
|
90
|
+
w as AdminFullscreenExit,
|
|
91
|
+
m as AdminGavel,
|
|
92
|
+
D as AdminHome,
|
|
93
|
+
u as AdminLiveOnline,
|
|
94
|
+
U as AdminPencil,
|
|
95
|
+
x as AdminPerson,
|
|
96
|
+
c as AdminPlay,
|
|
97
|
+
T as AdminSearch,
|
|
98
|
+
n as AdminTelephone,
|
|
99
|
+
y as AppleAppStoreBadge,
|
|
100
|
+
X as ArrowDown,
|
|
101
|
+
W as ArrowLeft,
|
|
102
|
+
q as ArrowRight,
|
|
103
|
+
J as ArrowUp,
|
|
104
|
+
N as Bag,
|
|
105
|
+
Y as Calendar,
|
|
106
|
+
_ as ChevronDown,
|
|
107
|
+
ee as ChevronLeft,
|
|
108
|
+
re as ChevronRight,
|
|
109
|
+
ae as ChevronUp,
|
|
110
|
+
le as CloseX,
|
|
111
|
+
me as ConditionReport,
|
|
112
|
+
ue as Delete,
|
|
113
|
+
xe as Download,
|
|
114
|
+
ne as Edit,
|
|
115
|
+
ce as Email,
|
|
116
|
+
ve as Error,
|
|
117
|
+
we as ExternalLink,
|
|
118
|
+
Se as Facebook,
|
|
119
|
+
Re as Favorite,
|
|
120
|
+
Fe as FavoriteActive,
|
|
121
|
+
Ie as Filters,
|
|
122
|
+
ke as Fullscreen,
|
|
123
|
+
De as FullscreenExit,
|
|
124
|
+
Te as Gavel,
|
|
125
|
+
Ue as GavelActive,
|
|
126
|
+
ye as Grid,
|
|
127
|
+
Xe as Hide,
|
|
128
|
+
qe as Home,
|
|
129
|
+
We as HomeActive,
|
|
130
|
+
Ye as Icon,
|
|
131
|
+
Je as IconGreenCircle,
|
|
132
|
+
Ne as IconRedCircle,
|
|
133
|
+
_e as Instagram,
|
|
134
|
+
eo as LinkedIn,
|
|
135
|
+
ro as List,
|
|
136
|
+
ao as Lock,
|
|
137
|
+
lo as MagnificentSeven,
|
|
138
|
+
so as Menu,
|
|
139
|
+
po as Mute,
|
|
140
|
+
io as Pause,
|
|
141
|
+
Ao as PhillipsAppIcon,
|
|
142
|
+
ho as PhillipsLogo,
|
|
143
|
+
Co as Play,
|
|
144
|
+
Lo as Red,
|
|
145
|
+
go as Refresh,
|
|
146
|
+
Po as Search,
|
|
147
|
+
Mo as Sell,
|
|
148
|
+
Eo as SellActive,
|
|
149
|
+
Go as Share,
|
|
150
|
+
Ho as Subtract,
|
|
151
|
+
Vo as Success,
|
|
152
|
+
bo as Tooltip,
|
|
153
|
+
Bo as TwitterX,
|
|
154
|
+
Oo as Upload,
|
|
155
|
+
jo as View,
|
|
156
|
+
zo as VolumeMaximum,
|
|
157
|
+
Ko as VolumeMid,
|
|
158
|
+
Qo as VolumeMinimum,
|
|
159
|
+
Zo as WeChat
|
|
130
160
|
};
|