@bifrostui/icons 2.0.0-beta.8 → 2.0.0-beta.9
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/components/SearchOutlinedBold.d.ts +3 -0
- package/dist/components/SearchOutlinedBold.js +37 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +3 -0
- package/es/components/SearchOutlinedBold.d.ts +3 -0
- package/es/components/SearchOutlinedBold.js +8 -0
- package/es/components/index.d.ts +1 -0
- package/es/components/index.js +114 -112
- package/package.json +3 -3
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
var SearchOutlinedBold_exports = {};
|
|
29
|
+
__export(SearchOutlinedBold_exports, {
|
|
30
|
+
default: () => SearchOutlinedBold_default
|
|
31
|
+
});
|
|
32
|
+
module.exports = __toCommonJS(SearchOutlinedBold_exports);
|
|
33
|
+
var import_createSvgIcon = __toESM(require("../utils/createSvgIcon"));
|
|
34
|
+
var SearchOutlinedBold_default = (0, import_createSvgIcon.default)(
|
|
35
|
+
'<path d="M47.5 6.6c21.9 0 39.7 17.8 39.7 39.7s-3.3 18-8.7 24.8l12.2 12.1c1.7 1.7 1.7 4.4 0 6.1-1.7 1.7-4.4 1.7-6.1 0L72.4 77.2c-6.8 5.5-15.4 8.7-24.8 8.7-21.9 0-39.7-17.8-39.7-39.7S25.6 6.6 47.5 6.6Zm0 8.6c-17.2 0-31.1 13.9-31.1 31.1s13.9 31.1 31.1 31.1 31.1-13.9 31.1-31.1-13.9-31.1-31.1-31.1Z"/>',
|
|
36
|
+
"SearchOutlinedBoldIcon"
|
|
37
|
+
);
|
|
@@ -186,6 +186,7 @@ export { default as ScanOutlinedIcon } from './ScanOutlined';
|
|
|
186
186
|
export { default as ScheduleIcon } from './Schedule';
|
|
187
187
|
export { default as SearchGapOutlinedIcon } from './SearchGapOutlined';
|
|
188
188
|
export { default as SearchOutlinedIcon } from './SearchOutlined';
|
|
189
|
+
export { default as SearchOutlinedBoldIcon } from './SearchOutlinedBold';
|
|
189
190
|
export { default as SettingsOutlinedIcon } from './SettingsOutlined';
|
|
190
191
|
export { default as SevenDayCalendarIcon } from './SevenDayCalendar';
|
|
191
192
|
export { default as ShareIcon } from './Share';
|
package/dist/components/index.js
CHANGED
|
@@ -214,6 +214,7 @@ __export(components_exports, {
|
|
|
214
214
|
ScanOutlinedIcon: () => import_ScanOutlined.default,
|
|
215
215
|
ScheduleIcon: () => import_Schedule.default,
|
|
216
216
|
SearchGapOutlinedIcon: () => import_SearchGapOutlined.default,
|
|
217
|
+
SearchOutlinedBoldIcon: () => import_SearchOutlinedBold.default,
|
|
217
218
|
SearchOutlinedIcon: () => import_SearchOutlined.default,
|
|
218
219
|
SettingsOutlinedIcon: () => import_SettingsOutlined.default,
|
|
219
220
|
SevenDayCalendarIcon: () => import_SevenDayCalendar.default,
|
|
@@ -461,6 +462,7 @@ var import_ScanOutlined = __toESM(require("./ScanOutlined"));
|
|
|
461
462
|
var import_Schedule = __toESM(require("./Schedule"));
|
|
462
463
|
var import_SearchGapOutlined = __toESM(require("./SearchGapOutlined"));
|
|
463
464
|
var import_SearchOutlined = __toESM(require("./SearchOutlined"));
|
|
465
|
+
var import_SearchOutlinedBold = __toESM(require("./SearchOutlinedBold"));
|
|
464
466
|
var import_SettingsOutlined = __toESM(require("./SettingsOutlined"));
|
|
465
467
|
var import_SevenDayCalendar = __toESM(require("./SevenDayCalendar"));
|
|
466
468
|
var import_Share = __toESM(require("./Share"));
|
|
@@ -706,6 +708,7 @@ var import_ZoomInOutlined = __toESM(require("./ZoomInOutlined"));
|
|
|
706
708
|
ScanOutlinedIcon,
|
|
707
709
|
ScheduleIcon,
|
|
708
710
|
SearchGapOutlinedIcon,
|
|
711
|
+
SearchOutlinedBoldIcon,
|
|
709
712
|
SearchOutlinedIcon,
|
|
710
713
|
SettingsOutlinedIcon,
|
|
711
714
|
SevenDayCalendarIcon,
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import createSvgIcon from "../utils/createSvgIcon";
|
|
2
|
+
var SearchOutlinedBold_default = createSvgIcon(
|
|
3
|
+
'<path d="M47.5 6.6c21.9 0 39.7 17.8 39.7 39.7s-3.3 18-8.7 24.8l12.2 12.1c1.7 1.7 1.7 4.4 0 6.1-1.7 1.7-4.4 1.7-6.1 0L72.4 77.2c-6.8 5.5-15.4 8.7-24.8 8.7-21.9 0-39.7-17.8-39.7-39.7S25.6 6.6 47.5 6.6Zm0 8.6c-17.2 0-31.1 13.9-31.1 31.1s13.9 31.1 31.1 31.1 31.1-13.9 31.1-31.1-13.9-31.1-31.1-31.1Z"/>',
|
|
4
|
+
"SearchOutlinedBoldIcon"
|
|
5
|
+
);
|
|
6
|
+
export {
|
|
7
|
+
SearchOutlinedBold_default as default
|
|
8
|
+
};
|
package/es/components/index.d.ts
CHANGED
|
@@ -186,6 +186,7 @@ export { default as ScanOutlinedIcon } from './ScanOutlined';
|
|
|
186
186
|
export { default as ScheduleIcon } from './Schedule';
|
|
187
187
|
export { default as SearchGapOutlinedIcon } from './SearchGapOutlined';
|
|
188
188
|
export { default as SearchOutlinedIcon } from './SearchOutlined';
|
|
189
|
+
export { default as SearchOutlinedBoldIcon } from './SearchOutlinedBold';
|
|
189
190
|
export { default as SettingsOutlinedIcon } from './SettingsOutlined';
|
|
190
191
|
export { default as SevenDayCalendarIcon } from './SevenDayCalendar';
|
|
191
192
|
export { default as ShareIcon } from './Share';
|
package/es/components/index.js
CHANGED
|
@@ -186,62 +186,63 @@ import { default as default186 } from "./ScanOutlined";
|
|
|
186
186
|
import { default as default187 } from "./Schedule";
|
|
187
187
|
import { default as default188 } from "./SearchGapOutlined";
|
|
188
188
|
import { default as default189 } from "./SearchOutlined";
|
|
189
|
-
import { default as default190 } from "./
|
|
190
|
-
import { default as default191 } from "./
|
|
191
|
-
import { default as default192 } from "./
|
|
192
|
-
import { default as default193 } from "./
|
|
193
|
-
import { default as default194 } from "./
|
|
194
|
-
import { default as default195 } from "./
|
|
195
|
-
import { default as default196 } from "./
|
|
196
|
-
import { default as default197 } from "./
|
|
197
|
-
import { default as default198 } from "./
|
|
198
|
-
import { default as default199 } from "./
|
|
199
|
-
import { default as default200 } from "./
|
|
200
|
-
import { default as default201 } from "./
|
|
201
|
-
import { default as default202 } from "./
|
|
202
|
-
import { default as default203 } from "./
|
|
203
|
-
import { default as default204 } from "./
|
|
204
|
-
import { default as default205 } from "./
|
|
205
|
-
import { default as default206 } from "./
|
|
206
|
-
import { default as default207 } from "./
|
|
207
|
-
import { default as default208 } from "./
|
|
208
|
-
import { default as default209 } from "./
|
|
209
|
-
import { default as default210 } from "./
|
|
210
|
-
import { default as default211 } from "./
|
|
211
|
-
import { default as default212 } from "./
|
|
212
|
-
import { default as default213 } from "./
|
|
213
|
-
import { default as default214 } from "./
|
|
214
|
-
import { default as default215 } from "./
|
|
215
|
-
import { default as default216 } from "./
|
|
216
|
-
import { default as default217 } from "./
|
|
217
|
-
import { default as default218 } from "./
|
|
218
|
-
import { default as default219 } from "./
|
|
219
|
-
import { default as default220 } from "./
|
|
220
|
-
import { default as default221 } from "./
|
|
221
|
-
import { default as default222 } from "./
|
|
222
|
-
import { default as default223 } from "./
|
|
223
|
-
import { default as default224 } from "./
|
|
224
|
-
import { default as default225 } from "./
|
|
225
|
-
import { default as default226 } from "./
|
|
226
|
-
import { default as default227 } from "./
|
|
227
|
-
import { default as default228 } from "./
|
|
228
|
-
import { default as default229 } from "./
|
|
229
|
-
import { default as default230 } from "./
|
|
230
|
-
import { default as default231 } from "./
|
|
231
|
-
import { default as default232 } from "./
|
|
232
|
-
import { default as default233 } from "./
|
|
233
|
-
import { default as default234 } from "./
|
|
234
|
-
import { default as default235 } from "./
|
|
235
|
-
import { default as default236 } from "./
|
|
236
|
-
import { default as default237 } from "./
|
|
237
|
-
import { default as default238 } from "./
|
|
238
|
-
import { default as default239 } from "./
|
|
239
|
-
import { default as default240 } from "./
|
|
240
|
-
import { default as default241 } from "./
|
|
241
|
-
import { default as default242 } from "./
|
|
242
|
-
import { default as default243 } from "./
|
|
243
|
-
import { default as default244 } from "./
|
|
244
|
-
import { default as default245 } from "./
|
|
189
|
+
import { default as default190 } from "./SearchOutlinedBold";
|
|
190
|
+
import { default as default191 } from "./SettingsOutlined";
|
|
191
|
+
import { default as default192 } from "./SevenDayCalendar";
|
|
192
|
+
import { default as default193 } from "./Share";
|
|
193
|
+
import { default as default194 } from "./ShoppingCartOutlined";
|
|
194
|
+
import { default as default195 } from "./ShowFilled";
|
|
195
|
+
import { default as default196 } from "./ShowOutlined";
|
|
196
|
+
import { default as default197 } from "./SiffHome";
|
|
197
|
+
import { default as default198 } from "./SmileFilled";
|
|
198
|
+
import { default as default199 } from "./SmileOutlined";
|
|
199
|
+
import { default as default200 } from "./Sort";
|
|
200
|
+
import { default as default201 } from "./StarCircleOutlined";
|
|
201
|
+
import { default as default202 } from "./StarFilled";
|
|
202
|
+
import { default as default203 } from "./StarFilledSharp";
|
|
203
|
+
import { default as default204 } from "./StarOutlined";
|
|
204
|
+
import { default as default205 } from "./StarRoundedFilled";
|
|
205
|
+
import { default as default206 } from "./Store";
|
|
206
|
+
import { default as default207 } from "./StoreFilled";
|
|
207
|
+
import { default as default208 } from "./SuccessCircleFilled";
|
|
208
|
+
import { default as default209 } from "./SuccessCircleFilledBold";
|
|
209
|
+
import { default as default210 } from "./SuccessCircleOutlined";
|
|
210
|
+
import { default as default211 } from "./SuccessFilled";
|
|
211
|
+
import { default as default212 } from "./SuccessFilledBold";
|
|
212
|
+
import { default as default213 } from "./SunOutlined";
|
|
213
|
+
import { default as default214 } from "./TaoPiaoPiaoLogo";
|
|
214
|
+
import { default as default215 } from "./TaoTicketsLogo";
|
|
215
|
+
import { default as default216 } from "./ThumbUpFilled";
|
|
216
|
+
import { default as default217 } from "./ThumbUpOutlined";
|
|
217
|
+
import { default as default218 } from "./TicketFilled";
|
|
218
|
+
import { default as default219 } from "./TicketMachineOutlined";
|
|
219
|
+
import { default as default220 } from "./TicketOutlined";
|
|
220
|
+
import { default as default221 } from "./TipsOutlined";
|
|
221
|
+
import { default as default222 } from "./ToTopOutlined";
|
|
222
|
+
import { default as default223 } from "./TopicFilled";
|
|
223
|
+
import { default as default224 } from "./TopicOutlined";
|
|
224
|
+
import { default as default225 } from "./TransformFilled";
|
|
225
|
+
import { default as default226 } from "./TrendingCircleFilled";
|
|
226
|
+
import { default as default227 } from "./TrendingCircleOutlined";
|
|
227
|
+
import { default as default228 } from "./TripleVerticalLine";
|
|
228
|
+
import { default as default229 } from "./Up";
|
|
229
|
+
import { default as default230 } from "./UserFollowedOutlined";
|
|
230
|
+
import { default as default231 } from "./VerifiedFilled";
|
|
231
|
+
import { default as default232 } from "./VideoOutlined";
|
|
232
|
+
import { default as default233 } from "./VipCardFilled";
|
|
233
|
+
import { default as default234 } from "./VipFilled";
|
|
234
|
+
import { default as default235 } from "./VipOutlined";
|
|
235
|
+
import { default as default236 } from "./VolumeDownFilled";
|
|
236
|
+
import { default as default237 } from "./VolumeMuteFilled";
|
|
237
|
+
import { default as default238 } from "./VolumeMuteOutlined";
|
|
238
|
+
import { default as default239 } from "./VolumeUpFilled";
|
|
239
|
+
import { default as default240 } from "./VolumeUpOutlined";
|
|
240
|
+
import { default as default241 } from "./WeChatOutlined";
|
|
241
|
+
import { default as default242 } from "./WeiBoOutlined";
|
|
242
|
+
import { default as default243 } from "./WifiOutlined";
|
|
243
|
+
import { default as default244 } from "./XiaMiCircleOutlined";
|
|
244
|
+
import { default as default245 } from "./YouKuVipCircleOutlined";
|
|
245
|
+
import { default as default246 } from "./ZoomInOutlined";
|
|
245
246
|
export {
|
|
246
247
|
default3 as AccessTimeCircleFilledBoldIcon,
|
|
247
248
|
default2 as AccessTimeCircleFilledIcon,
|
|
@@ -430,61 +431,62 @@ export {
|
|
|
430
431
|
default186 as ScanOutlinedIcon,
|
|
431
432
|
default187 as ScheduleIcon,
|
|
432
433
|
default188 as SearchGapOutlinedIcon,
|
|
434
|
+
default190 as SearchOutlinedBoldIcon,
|
|
433
435
|
default189 as SearchOutlinedIcon,
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
436
|
+
default191 as SettingsOutlinedIcon,
|
|
437
|
+
default192 as SevenDayCalendarIcon,
|
|
438
|
+
default193 as ShareIcon,
|
|
439
|
+
default194 as ShoppingCartOutlinedIcon,
|
|
440
|
+
default195 as ShowFilledIcon,
|
|
441
|
+
default196 as ShowOutlinedIcon,
|
|
442
|
+
default197 as SiffHomeIcon,
|
|
443
|
+
default198 as SmileFilledIcon,
|
|
444
|
+
default199 as SmileOutlinedIcon,
|
|
445
|
+
default200 as SortIcon,
|
|
446
|
+
default201 as StarCircleOutlinedIcon,
|
|
447
|
+
default202 as StarFilledIcon,
|
|
448
|
+
default203 as StarFilledSharpIcon,
|
|
449
|
+
default204 as StarOutlinedIcon,
|
|
450
|
+
default205 as StarRoundedFilledIcon,
|
|
451
|
+
default207 as StoreFilledIcon,
|
|
452
|
+
default206 as StoreIcon,
|
|
453
|
+
default209 as SuccessCircleFilledBoldIcon,
|
|
454
|
+
default208 as SuccessCircleFilledIcon,
|
|
455
|
+
default210 as SuccessCircleOutlinedIcon,
|
|
456
|
+
default212 as SuccessFilledBoldIcon,
|
|
457
|
+
default211 as SuccessFilledIcon,
|
|
458
|
+
default213 as SunOutlinedIcon,
|
|
459
|
+
default214 as TaoPiaoPiaoLogoIcon,
|
|
460
|
+
default215 as TaoTicketsLogoIcon,
|
|
461
|
+
default216 as ThumbUpFilledIcon,
|
|
462
|
+
default217 as ThumbUpOutlinedIcon,
|
|
463
|
+
default218 as TicketFilledIcon,
|
|
464
|
+
default219 as TicketMachineOutlinedIcon,
|
|
465
|
+
default220 as TicketOutlinedIcon,
|
|
466
|
+
default221 as TipsOutlinedIcon,
|
|
467
|
+
default222 as ToTopOutlinedIcon,
|
|
468
|
+
default223 as TopicFilledIcon,
|
|
469
|
+
default224 as TopicOutlinedIcon,
|
|
470
|
+
default225 as TransformFilledIcon,
|
|
471
|
+
default226 as TrendingCircleFilledIcon,
|
|
472
|
+
default227 as TrendingCircleOutlinedIcon,
|
|
473
|
+
default228 as TripleVerticalLineIcon,
|
|
474
|
+
default229 as UpIcon,
|
|
475
|
+
default230 as UserFollowedOutlinedIcon,
|
|
476
|
+
default231 as VerifiedFilledIcon,
|
|
477
|
+
default232 as VideoOutlinedIcon,
|
|
478
|
+
default233 as VipCardFilledIcon,
|
|
479
|
+
default234 as VipFilledIcon,
|
|
480
|
+
default235 as VipOutlinedIcon,
|
|
481
|
+
default236 as VolumeDownFilledIcon,
|
|
482
|
+
default237 as VolumeMuteFilledIcon,
|
|
483
|
+
default238 as VolumeMuteOutlinedIcon,
|
|
484
|
+
default239 as VolumeUpFilledIcon,
|
|
485
|
+
default240 as VolumeUpOutlinedIcon,
|
|
486
|
+
default241 as WeChatOutlinedIcon,
|
|
487
|
+
default242 as WeiBoOutlinedIcon,
|
|
488
|
+
default243 as WifiOutlinedIcon,
|
|
489
|
+
default244 as XiaMiCircleOutlinedIcon,
|
|
490
|
+
default245 as YouKuVipCircleOutlinedIcon,
|
|
491
|
+
default246 as ZoomInOutlinedIcon
|
|
490
492
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bifrostui/icons",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.9",
|
|
4
4
|
"description": "SVG icon components for BUI",
|
|
5
5
|
"homepage": "http://bui.taopiaopiao.com",
|
|
6
6
|
"license": "MIT",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"clsx": "^2.1.1",
|
|
36
|
-
"@bifrostui/
|
|
37
|
-
"@bifrostui/
|
|
36
|
+
"@bifrostui/types": "2.0.0-beta.9",
|
|
37
|
+
"@bifrostui/utils": "2.0.0-beta.9"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"react": "^17.0.0 || ^18.0.0"
|