pds-dev-kit-web-test 2.7.510 → 2.7.512

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,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const Plugin: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default Plugin;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var Plugin = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none" }, { children: [(0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M8.7675,6.2426 C9.3195,6.2426 9.7675,6.6906 9.7675,7.2426 L9.7675,16.7576 C9.7675,17.3096 9.3195,17.7576 8.7675,17.7576 L5.9955,17.7576 C4.0625,17.7576 2.4955,16.1906 2.4955,14.2576 L2.4955,9.7426 C2.4955,7.8096 4.0625,6.2426 5.9955,6.2426 Z M17.8637,6.2426 L14.8347,6.2426 C14.2827,6.2426 13.8347,6.6906 13.8347,7.2426 L13.8347,16.7576 C13.8347,17.3096 14.2827,17.7576 14.8347,17.7576 L17.8637,17.7576 C19.7967,17.7576 21.3637,16.1906 21.3637,14.2576 L21.3637,9.7426 C21.3637,7.8096 19.7967,6.2426 17.8637,6.2426 L17.8637,6.2426 Z M17.8637,8.2426 C18.6907,8.2426 19.3637,8.9156 19.3637,9.7426 L19.3637,14.2576 C19.3637,15.0846 18.6907,15.7576 17.8637,15.7576 L15.8347,15.7576 L15.8347,8.2426 L17.8637,8.2426 Z" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeWidth: "2", d: "M2.7086,12 L1.3956,12 M21.2914,12 L22.6044,12 M11.9337,9.7384 L8.9337,9.7384 M11.9337,14.2616 L8.9337,14.2616" })] })) })));
29
+ };
30
+ exports.default = Plugin;
@@ -170,5 +170,6 @@ declare const fillIcons: {
170
170
  readonly ic_cam_off: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
171
171
  readonly ic_gift: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
172
172
  readonly ic_variable_preview: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
173
+ readonly ic_plugin: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
173
174
  };
174
175
  export default fillIcons;
@@ -106,6 +106,7 @@ var Paste_1 = __importDefault(require("./Paste"));
106
106
  var Photo_1 = __importDefault(require("./Photo"));
107
107
  var Pin_1 = __importDefault(require("./Pin"));
108
108
  var Plan_1 = __importDefault(require("./Plan"));
109
+ var Plugin_1 = __importDefault(require("./Plugin"));
109
110
  var PlusCircle_1 = __importDefault(require("./PlusCircle"));
110
111
  var PlusRound_1 = __importDefault(require("./PlusRound"));
111
112
  var PostFree_1 = __importDefault(require("./PostFree"));
@@ -343,6 +344,7 @@ var fillIcons = {
343
344
  ic_cam: Cam_1.default,
344
345
  ic_cam_off: CamOff_1.default,
345
346
  ic_gift: Gift_1.default,
346
- ic_variable_preview: VariablePreview_1.default
347
+ ic_variable_preview: VariablePreview_1.default,
348
+ ic_plugin: Plugin_1.default
347
349
  };
348
350
  exports.default = fillIcons;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const Plugin: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default Plugin;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var Plugin = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none" }, { children: [(0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M8.7675,6.2426 C9.3195,6.2426 9.7675,6.6906 9.7675,7.2426 L9.7675,16.7576 C9.7675,17.3096 9.3195,17.7576 8.7675,17.7576 L5.9955,17.7576 C4.0625,17.7576 2.4955,16.1906 2.4955,14.2576 L2.4955,9.7426 C2.4955,7.8096 4.0625,6.2426 5.9955,6.2426 Z M17.8637,6.2426 L14.8347,6.2426 C14.2827,6.2426 13.8347,6.6906 13.8347,7.2426 L13.8347,16.7576 C13.8347,17.3096 14.2827,17.7576 14.8347,17.7576 L17.8637,17.7576 C19.7967,17.7576 21.3637,16.1906 21.3637,14.2576 L21.3637,9.7426 C21.3637,7.8096 19.7967,6.2426 17.8637,6.2426 L17.8637,6.2426 Z M17.8637,7.7426 C18.9667,7.7426 19.8637,8.6396 19.8637,9.7426 L19.8637,14.2576 C19.8637,15.3606 18.9667,16.2576 17.8637,16.2576 L15.3347,16.2576 L15.3347,7.7426 L17.8637,7.7426 Z" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeWidth: "1.5", d: "M2.7086,12 L1.3956,12 M21.2914,12 L22.6044,12 M11.9337,9.7384 L8.9337,9.7384 M11.9337,14.2616 L8.9337,14.2616" })] })) })));
29
+ };
30
+ exports.default = Plugin;
@@ -331,5 +331,6 @@ declare const lineIcons: {
331
331
  readonly ic_cam_off: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
332
332
  readonly ic_gift: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
333
333
  readonly ic_variable_preview: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
334
+ readonly ic_plugin: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
334
335
  };
335
336
  export default lineIcons;
@@ -169,6 +169,7 @@ var PaymentSetting_1 = __importDefault(require("./PaymentSetting"));
169
169
  var Photo_1 = __importDefault(require("./Photo"));
170
170
  var PhotoMultiple_1 = __importDefault(require("./PhotoMultiple"));
171
171
  var Plan_1 = __importDefault(require("./Plan"));
172
+ var Plugin_1 = __importDefault(require("./Plugin"));
172
173
  var Plus_1 = __importDefault(require("./Plus"));
173
174
  var PlusCircle_1 = __importDefault(require("./PlusCircle"));
174
175
  var PlusRound_1 = __importDefault(require("./PlusRound"));
@@ -665,6 +666,7 @@ var lineIcons = {
665
666
  ic_cam: Cam_1.default,
666
667
  ic_cam_off: CamOff_1.default,
667
668
  ic_gift: Gift_1.default,
668
- ic_variable_preview: VariablePreview_1.default
669
+ ic_variable_preview: VariablePreview_1.default,
670
+ ic_plugin: Plugin_1.default
669
671
  };
670
672
  exports.default = lineIcons;