@elliemae/ds-icon 2.3.0-alpha.1 → 2.3.0-alpha.6
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/{cjs → dist/cjs}/DSIconColor.js +0 -0
- package/{cjs → dist/cjs}/DSIconColor.js.map +0 -0
- package/{cjs → dist/cjs}/DSIconSize.js +0 -0
- package/{cjs → dist/cjs}/DSIconSize.js.map +0 -0
- package/{cjs → dist/cjs}/index.js +0 -0
- package/{cjs → dist/cjs}/index.js.map +0 -0
- package/{esm → dist/esm}/DSIconColor.js +0 -0
- package/{esm → dist/esm}/DSIconColor.js.map +0 -0
- package/{esm → dist/esm}/DSIconSize.js +0 -0
- package/{esm → dist/esm}/DSIconSize.js.map +0 -0
- package/{esm → dist/esm}/index.js +0 -0
- package/{esm → dist/esm}/index.js.map +0 -0
- package/package.json +19 -17
- package/types/DSIconColor.d.ts +0 -9
- package/types/DSIconSize.d.ts +0 -10
- package/types/index.d.ts +0 -22
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,23 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-icon",
|
|
3
|
-
"version": "2.3.0-alpha.
|
|
3
|
+
"version": "2.3.0-alpha.6",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Icon",
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"module": "./dist/esm/index.js",
|
|
10
|
+
"main": "./dist/cjs/index.js",
|
|
11
|
+
"types": "./dist/types/index.d.ts",
|
|
9
12
|
"exports": {
|
|
10
13
|
".": {
|
|
11
|
-
"import": "./esm/index.js",
|
|
12
|
-
"require": "./cjs/index.js"
|
|
14
|
+
"import": "./dist/esm/index.js",
|
|
15
|
+
"require": "./dist/cjs/index.js"
|
|
13
16
|
},
|
|
14
17
|
"./DSIconSize": {
|
|
15
|
-
"import": "./esm/DSIconSize.js",
|
|
16
|
-
"require": "./cjs/DSIconSize.js"
|
|
18
|
+
"import": "./dist/esm/DSIconSize.js",
|
|
19
|
+
"require": "./dist/cjs/DSIconSize.js"
|
|
17
20
|
},
|
|
18
21
|
"./DSIconColor": {
|
|
19
|
-
"import": "./esm/DSIconColor.js",
|
|
20
|
-
"require": "./cjs/DSIconColor.js"
|
|
22
|
+
"import": "./dist/esm/DSIconColor.js",
|
|
23
|
+
"require": "./dist/cjs/DSIconColor.js"
|
|
21
24
|
}
|
|
22
25
|
},
|
|
23
26
|
"sideEffects": [
|
|
@@ -29,19 +32,18 @@
|
|
|
29
32
|
"url": "https://git.elliemae.io/platform-ui/dimsum.git"
|
|
30
33
|
},
|
|
31
34
|
"engines": {
|
|
32
|
-
"
|
|
33
|
-
"node": ">=
|
|
35
|
+
"pnpm": ">=6",
|
|
36
|
+
"node": ">=16"
|
|
34
37
|
},
|
|
35
38
|
"author": "ICE MT",
|
|
39
|
+
"publishConfig": {
|
|
40
|
+
"access": "public",
|
|
41
|
+
"typeSafety": false
|
|
42
|
+
},
|
|
36
43
|
"scripts": {
|
|
37
44
|
"dev": "cross-env NODE_ENV=development && node ../../scripts/build/build.js -w",
|
|
38
45
|
"prebuild": "exit 0",
|
|
39
46
|
"predev": "exit 0",
|
|
40
47
|
"build": "node ../../scripts/build/build.js"
|
|
41
|
-
},
|
|
42
|
-
"publishConfig": {
|
|
43
|
-
"access": "public",
|
|
44
|
-
"directory": "dist",
|
|
45
|
-
"generateSubmodules": true
|
|
46
48
|
}
|
|
47
49
|
}
|
package/types/DSIconColor.d.ts
DELETED
package/types/DSIconSize.d.ts
DELETED
package/types/index.d.ts
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
export { default as DSIconColors } from './DSIconColor';
|
|
2
|
-
export { default as DSIconSizes } from './DSIconSize';
|
|
3
|
-
declare const _default: {
|
|
4
|
-
DSIconColors: {
|
|
5
|
-
NEUTRAL: string[];
|
|
6
|
-
WHITE: string[];
|
|
7
|
-
DANGER: string[];
|
|
8
|
-
WARNING: string[];
|
|
9
|
-
SUCCESS: string[];
|
|
10
|
-
PRIMARY: string[];
|
|
11
|
-
};
|
|
12
|
-
DSIconSizes: {
|
|
13
|
-
XXS: string;
|
|
14
|
-
XS: string;
|
|
15
|
-
S: string;
|
|
16
|
-
M: string;
|
|
17
|
-
L: string;
|
|
18
|
-
XL: string;
|
|
19
|
-
XXL: string;
|
|
20
|
-
};
|
|
21
|
-
};
|
|
22
|
-
export default _default;
|