@yahoo/uds 0.0.6 → 0.1.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/chunk-L2YVFMLU.js +1 -0
- package/dist/fixtures.cjs +1 -0
- package/dist/fixtures.d.cts +45 -0
- package/dist/fixtures.d.ts +45 -0
- package/dist/fixtures.js +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +169 -11
- package/dist/index.d.ts +169 -11
- package/dist/index.js +1 -1
- package/dist/types-4LauN_ut.d.ts +34113 -0
- package/package.json +16 -7
- package/dist/tokens/colors.cjs +0 -1
- package/dist/tokens/colors.d.cts +0 -12
- package/dist/tokens/colors.d.ts +0 -12
- package/dist/tokens/colors.js +0 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@yahoo/uds",
|
3
|
-
"version": "0.0
|
3
|
+
"version": "0.1.0",
|
4
4
|
"description": "Yahoo Universal System",
|
5
5
|
"type": "module",
|
6
6
|
"main": "./dist/index.js",
|
@@ -9,7 +9,7 @@
|
|
9
9
|
"sideEffects": false,
|
10
10
|
"exports": {
|
11
11
|
".": "./dist/index.js",
|
12
|
-
"./
|
12
|
+
"./fixtures": "./dist/fixtures.js",
|
13
13
|
"./package.json": "./package.json"
|
14
14
|
},
|
15
15
|
"files": [
|
@@ -17,23 +17,32 @@
|
|
17
17
|
"package.json"
|
18
18
|
],
|
19
19
|
"devDependencies": {
|
20
|
-
"@types/react": "^18.2.
|
21
|
-
"@types/react-dom": "^18.2.
|
20
|
+
"@types/react": "^18.2.37",
|
21
|
+
"@types/react-dom": "^18.2.15",
|
22
22
|
"react": "^18.2.0",
|
23
23
|
"react-dom": "^18.2.0",
|
24
|
-
"tsup": "^
|
25
|
-
"typescript": "^5.
|
26
|
-
"eslint-config-custom": "0.0.
|
24
|
+
"tsup": "^8.0.0",
|
25
|
+
"typescript": "^5.3.2",
|
26
|
+
"eslint-config-custom": "0.0.2",
|
27
27
|
"tsconfig": "0.0.1"
|
28
28
|
},
|
29
|
+
"dependencies": {
|
30
|
+
"@radix-ui/react-slot": "^1.0.2",
|
31
|
+
"clsx": "^2.0.0",
|
32
|
+
"tailwind-merge": "^2.0.0",
|
33
|
+
"tailwindcss": "^3.3.5",
|
34
|
+
"zod": "^3.22.4"
|
35
|
+
},
|
29
36
|
"scripts": {
|
30
37
|
"build": "tsup",
|
38
|
+
"debug:css": "tailwindcss --input ./src/tailwind/styles.css --output ./dist/styles.css --config ./src/tailwind/tailwind.config.ts",
|
31
39
|
"dev": "tsup --watch",
|
32
40
|
"lint": "eslint .",
|
33
41
|
"test": "vitest run",
|
34
42
|
"test:watch": "vitest",
|
35
43
|
"test:coverage": "vitest run --coverage",
|
36
44
|
"test:ui": "vitest --ui --coverage",
|
45
|
+
"typecheck": "tsc --noEmit",
|
37
46
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
38
47
|
}
|
39
48
|
}
|
package/dist/tokens/colors.cjs
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
"use strict";var t=Object.defineProperty;var p=Object.getOwnPropertyDescriptor;var y=Object.getOwnPropertyNames;var n=Object.prototype.hasOwnProperty;var c=(o,r)=>{for(var l in r)t(o,l,{get:r[l],enumerable:!0})},v=(o,r,l,a)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of y(r))!n.call(o,e)&&e!==l&&t(o,e,{get:()=>r[e],enumerable:!(a=p(r,e))||a.enumerable});return o};var x=o=>v(t({},"__esModule",{value:!0}),o);var i={};c(i,{red60:()=>d,textPrimary:()=>u});module.exports=x(i);var d={color:"var(--red60)",value:60},u={color:"var(--text-primary)",value:6};0&&(module.exports={red60,textPrimary});
|
package/dist/tokens/colors.d.cts
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
* This file would be generated from style-dictionary or other tooling
|
4
|
-
*/
|
5
|
-
type ColorType = {
|
6
|
-
readonly color: string;
|
7
|
-
readonly value: number;
|
8
|
-
};
|
9
|
-
declare const red60: ColorType;
|
10
|
-
declare const textPrimary: ColorType;
|
11
|
-
|
12
|
-
export { ColorType, red60, textPrimary };
|
package/dist/tokens/colors.d.ts
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
* This file would be generated from style-dictionary or other tooling
|
4
|
-
*/
|
5
|
-
type ColorType = {
|
6
|
-
readonly color: string;
|
7
|
-
readonly value: number;
|
8
|
-
};
|
9
|
-
declare const red60: ColorType;
|
10
|
-
declare const textPrimary: ColorType;
|
11
|
-
|
12
|
-
export { ColorType, red60, textPrimary };
|
package/dist/tokens/colors.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
var r={color:"var(--red60)",value:60},o={color:"var(--text-primary)",value:6};export{r as red60,o as textPrimary};
|