listpage-next 0.0.239 → 0.0.240
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/ui/ui.d.ts +1 -0
- package/dist/ui.css +0 -4
- package/dist/ui.js +1 -0
- package/package.json +2 -2
package/dist/ui/ui.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './index';
|
package/dist/ui.css
CHANGED
|
@@ -22,7 +22,6 @@
|
|
|
22
22
|
--text-sm: 0.875rem;
|
|
23
23
|
--text-sm--line-height: calc(1.25 / 0.875);
|
|
24
24
|
--font-weight-medium: 500;
|
|
25
|
-
--radius-md: 0.375rem;
|
|
26
25
|
--radius-lg: 0.5rem;
|
|
27
26
|
--animate-spin: spin 1s linear infinite;
|
|
28
27
|
--default-transition-duration: 150ms;
|
|
@@ -252,9 +251,6 @@
|
|
|
252
251
|
.rounded-lg {
|
|
253
252
|
border-radius: var(--radius-lg);
|
|
254
253
|
}
|
|
255
|
-
.rounded-md {
|
|
256
|
-
border-radius: var(--radius-md);
|
|
257
|
-
}
|
|
258
254
|
.border {
|
|
259
255
|
border-style: var(--tw-border-style);
|
|
260
256
|
border-width: 1px;
|
package/dist/ui.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./index.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "listpage-next",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.240",
|
|
4
4
|
"description": "A React component library for creating filter forms with Ant Design",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
},
|
|
13
13
|
"./ui": {
|
|
14
14
|
"types": "./dist/ui/ui.d.ts",
|
|
15
|
-
"import": "./dist/ui
|
|
15
|
+
"import": "./dist/ui.js"
|
|
16
16
|
},
|
|
17
17
|
"./ui.css": "./dist/ui.css"
|
|
18
18
|
},
|