@websolutespa/ask-ui 1.0.5 → 1.0.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/dist/postcss.config.mjs +7 -0
- package/dist/styles.css +6 -0
- package/package.json +7 -36
package/dist/styles.css
CHANGED
|
@@ -769,6 +769,9 @@
|
|
|
769
769
|
.max-h-96 {
|
|
770
770
|
max-height: calc(var(--spacing) * 96);
|
|
771
771
|
}
|
|
772
|
+
.max-h-100 {
|
|
773
|
+
max-height: calc(var(--spacing) * 100);
|
|
774
|
+
}
|
|
772
775
|
.max-h-\[240px\] {
|
|
773
776
|
max-height: 240px;
|
|
774
777
|
}
|
|
@@ -979,6 +982,9 @@
|
|
|
979
982
|
.max-w-\[calc\(100vw-560px\)\] {
|
|
980
983
|
max-width: calc(100vw - 560px);
|
|
981
984
|
}
|
|
985
|
+
.max-w-\[min\(800px\,100vw-40px\)\] {
|
|
986
|
+
max-width: min(800px, 100vw - 40px);
|
|
987
|
+
}
|
|
982
988
|
.max-w-full {
|
|
983
989
|
max-width: 100%;
|
|
984
990
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@websolutespa/ask-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Ask UI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"copyfiles": "copyfiles -u 1 \"src/**/*.{html,css,scss,ttf,woff,woff2,eot,svg,jpg,png,json}\" dist/",
|
|
12
12
|
"compile:tsdown": "tsdown",
|
|
13
13
|
"compile:copy": "copyfiles -u 1 \"src/**/*.{html,css,scss,ttf,woff,woff2,eot,svg,jpg,png,json}\" dist/",
|
|
14
|
+
"compile:postcss": "copyfiles \"postcss.config.mjs\" dist/",
|
|
14
15
|
"compile:tailwind": "tailwindcss build --input \"./src/globals.css\" --output \"./dist/styles.css\"",
|
|
15
16
|
"compile": "run-s compile:*",
|
|
16
17
|
"lint": "eslint",
|
|
@@ -19,8 +20,8 @@
|
|
|
19
20
|
"test:e2e": "playwright test",
|
|
20
21
|
"test:int": "vitest",
|
|
21
22
|
"types": "tsc --noEmit",
|
|
22
|
-
"prepack": "node
|
|
23
|
-
"postpack": "node
|
|
23
|
+
"prepack": "node ../../.node/pack.js prepack",
|
|
24
|
+
"postpack": "node ../../.node/pack.js postpack"
|
|
24
25
|
},
|
|
25
26
|
"dependencies": {
|
|
26
27
|
"@base-ui/react": "^1.3.0",
|
|
@@ -66,47 +67,17 @@
|
|
|
66
67
|
"tsdown": "^0.21.7",
|
|
67
68
|
"typescript": "^5.9.3"
|
|
68
69
|
},
|
|
69
|
-
"prepack": {
|
|
70
|
-
"exports": {
|
|
71
|
-
".": {
|
|
72
|
-
"import": "./dist/index.mjs",
|
|
73
|
-
"types": "./dist/index.d.mts",
|
|
74
|
-
"default": "./dist/index.mjs"
|
|
75
|
-
},
|
|
76
|
-
"./components/*": "./dist/components/*.mjs",
|
|
77
|
-
"./hooks/*": "./dist/hooks/*.mjs",
|
|
78
|
-
"./lib/*": "./dist/lib/*.mjs",
|
|
79
|
-
"./globals.css": "./dist/globals.css"
|
|
80
|
-
},
|
|
81
|
-
"main": "./dist/index.mjs",
|
|
82
|
-
"types": "./dist/index.d.mts"
|
|
83
|
-
},
|
|
84
|
-
"postpack": {
|
|
85
|
-
"exports": {
|
|
86
|
-
".": {
|
|
87
|
-
"import": "./src/index.ts",
|
|
88
|
-
"types": "./src/index.ts",
|
|
89
|
-
"default": "./src/index.ts"
|
|
90
|
-
},
|
|
91
|
-
"./components/*": "./src/components/*.tsx",
|
|
92
|
-
"./hooks/*": "./src/hooks/*.ts",
|
|
93
|
-
"./lib/*": "./src/lib/*.ts",
|
|
94
|
-
"./globals.css": "./src/globals.css"
|
|
95
|
-
},
|
|
96
|
-
"main": "./src/index.ts",
|
|
97
|
-
"types": "./src/index.ts"
|
|
98
|
-
},
|
|
99
70
|
"exports": {
|
|
100
71
|
".": {
|
|
72
|
+
"default": "./dist/index.mjs",
|
|
101
73
|
"import": "./dist/index.mjs",
|
|
102
|
-
"types": "./dist/index.d.mts"
|
|
103
|
-
"default": "./dist/index.mjs"
|
|
74
|
+
"types": "./dist/index.d.mts"
|
|
104
75
|
},
|
|
105
76
|
"./components/*": "./dist/components/*.mjs",
|
|
106
77
|
"./hooks/*": "./dist/hooks/*.mjs",
|
|
107
78
|
"./lib/*": "./dist/lib/*.mjs",
|
|
108
79
|
"./globals.css": "./dist/globals.css",
|
|
109
|
-
"./postcss.config": "./postcss.config.mjs"
|
|
80
|
+
"./postcss.config": "./dist/postcss.config.mjs"
|
|
110
81
|
},
|
|
111
82
|
"main": "./dist/index.mjs",
|
|
112
83
|
"types": "./dist/index.d.mts",
|