@dito-uai/components 5.1.0-alpha.37 → 5.1.0-alpha.38
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/index.d.ts +56 -4188
- package/dist/ui/chips.d.ts.map +1 -1
- package/package.json +3 -3
- package/tailwind.config.ts +3 -1
package/dist/ui/chips.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chips.d.ts","sourceRoot":"","sources":["../../src/ui/chips.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAC5C,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"chips.d.ts","sourceRoot":"","sources":["../../src/ui/chips.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAC5C,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAM,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAKrD,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCA0CjB,CAAC;AAEH,MAAM,MAAM,UAAU,GAAG,cAAc,CAAC,cAAc,CAAC,GACrD,YAAY,CAAC,OAAO,aAAa,CAAC,GAAG;IACnC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,IAAI,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,CAAC,KAAK,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC;AAEJ,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cARG,OAAO;WACV,KAAK,CAAC,WAAW;UAClB,MAAM;YACJ,MAAM;cACJ,CAAC,KAAK,CAAC,EAAE,MAAM,KAAK,IAAI;oBAClB,MAAM;wCAoDzB,CAAC;AAGF,eAAe,KAAK,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dito-uai/components",
|
|
3
|
-
"version": "5.1.0-alpha.
|
|
3
|
+
"version": "5.1.0-alpha.38",
|
|
4
4
|
"description": "Dito's design system component library, made in TSX",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "git+https://github.com/ditointernet/dito-uai.git",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"dev": "INCLUDE_STORYBOOK=true storybook dev -p 6006 --config-dir ./src/storybook/.storybook",
|
|
37
|
-
"build:storybook": "INCLUDE_STORYBOOK=true
|
|
38
|
-
"build:uai": "yarn build:js
|
|
37
|
+
"build:storybook": "INCLUDE_STORYBOOK=true storybook build --config-dir ./src/storybook/.storybook --output-dir ./src/storybook/storybook-static",
|
|
38
|
+
"build:uai": "yarn build:js && yarn build:types && yarn build:css",
|
|
39
39
|
"build:js": "tsup",
|
|
40
40
|
"build:types": "tsc --declaration --emitDeclarationOnly --declarationDir dist --project tsconfig.build.json",
|
|
41
41
|
"build:css": "tailwindcss -i ./src/global.css -o ./dist/global.css --minify -v",
|
package/tailwind.config.ts
CHANGED
|
@@ -96,7 +96,9 @@ const includeStorybook = process.env.INCLUDE_STORYBOOK === 'true';
|
|
|
96
96
|
export default {
|
|
97
97
|
content: [
|
|
98
98
|
'./src/ui/**/*.{ts,tsx}',
|
|
99
|
-
...(includeStorybook
|
|
99
|
+
...(includeStorybook
|
|
100
|
+
? ['./src/storybook/stories/*.stories.@(js|jsx|mjs|ts|tsx)']
|
|
101
|
+
: []),
|
|
100
102
|
],
|
|
101
103
|
theme: {
|
|
102
104
|
screens: {
|