@publicapps/icons 0.3.1
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/Icon.js +1 -0
- package/IconBody.js +1 -0
- package/IconStyle.js +1 -0
- package/IconType.d.ts +2549 -0
- package/LazyLoader.js +1 -0
- package/esm/Icon.js +1 -0
- package/esm/IconBody.js +1 -0
- package/esm/IconStyle.js +1 -0
- package/esm/LazyLoader.js +1 -0
- package/esm/iconsCategories.js +0 -0
- package/esm/index.js +1 -0
- package/icons.json +13904 -0
- package/iconsCategories.js +1 -0
- package/index.d.ts +26 -0
- package/index.js +8 -0
- package/package.json +23 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { IconType } from "./IconType";
|
|
2
|
+
import { DivBasedCompTypeMap, OverridableComponent, StandardColorType, DirectionType } from "../styles";
|
|
3
|
+
|
|
4
|
+
/***** * Icon * start *****/
|
|
5
|
+
export const Icon: OverridableComponent<
|
|
6
|
+
DivBasedCompTypeMap<{
|
|
7
|
+
icon: IconType;
|
|
8
|
+
color?: StandardColorType;
|
|
9
|
+
size?: string;
|
|
10
|
+
title?: string;
|
|
11
|
+
hidden?: boolean;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
dir?: DirectionType;
|
|
14
|
+
id?: string;
|
|
15
|
+
}>
|
|
16
|
+
>;
|
|
17
|
+
|
|
18
|
+
/***** * Icon * end *****/
|
|
19
|
+
export { IconType } from "./IconType";
|
|
20
|
+
|
|
21
|
+
type pkgConfigIconType = {
|
|
22
|
+
blnIsTestingMode: boolean;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
export var pkgConfigIcon: pkgConfigIconType;
|
|
26
|
+
export function setPkgConfigIcon(pkgConfigIcon?: pkgConfigIconType): void;
|
package/index.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @publicapps/icons v0.3.1
|
|
3
|
+
*
|
|
4
|
+
* @license ISC
|
|
5
|
+
* This source code is licensed under the ISC license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/
|
|
8
|
+
"use strict";"use client";var e=require("@babel/runtime/helpers/interopRequireDefault").default;Object.defineProperty(exports,"__esModule",{value:true});Object.defineProperty(exports,"Icon",{enumerable:true,get:function(){return t.default}});Object.defineProperty(exports,"default",{enumerable:true,get:function(){return t.default}});exports.pkgConfigIcon=void 0;exports.setPkgConfigIcon=o;var t=e(require("./Icon"));function r(){const e={blnIsTestingMode:true};return e}var n=exports.pkgConfigIcon=r();function o({blnIsTestingMode:e=false}){n.blnIsTestingMode=e}
|
package/package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@publicapps/icons",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "",
|
|
5
|
+
"private": false,
|
|
6
|
+
"author": "cbmis-client",
|
|
7
|
+
"license": "ISC",
|
|
8
|
+
"main": "./index.js",
|
|
9
|
+
"engines": {
|
|
10
|
+
"node": ">=14.0.0"
|
|
11
|
+
},
|
|
12
|
+
"sideEffects": false,
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "restricted",
|
|
15
|
+
"directory": "builds/public"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@babel/runtime": "^7.26.0"
|
|
19
|
+
},
|
|
20
|
+
"peerDependencies": {},
|
|
21
|
+
"module": "./esm/index.js",
|
|
22
|
+
"types": "./index.d.ts"
|
|
23
|
+
}
|