@particle-network/ui-react 0.3.0 → 0.3.1
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/components/UXButton/button-theme.js +1 -1
- package/dist/components/UXDatePicker/index.js +1 -1
- package/dist/components/UXDropdown/dropdown-item.js +1 -1
- package/dist/components/UXDropdown/dropdown.js +1 -1
- package/dist/components/UXPopover/popover.extend.js +1 -1
- package/dist/components/UXSelect/index.js +1 -1
- package/dist/components/UXTooltip/tooltip.extend.js +1 -1
- package/package.json +3 -3
|
@@ -29,7 +29,7 @@ const UXDatePicker = ({ classNames, ...props })=>/*#__PURE__*/ jsx(DatePicker, {
|
|
|
29
29
|
popoverProps: {
|
|
30
30
|
classNames: {
|
|
31
31
|
base: 'before:bg-content1 before:shadow-box',
|
|
32
|
-
content: 'bg-content1 text-foreground-300 shadow-box'
|
|
32
|
+
content: 'bg-content1 text-foreground-300 shadow-box antialiased'
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
35
|
timeInputProps: {
|
|
@@ -17,7 +17,7 @@ const classes = {
|
|
|
17
17
|
},
|
|
18
18
|
flat: {
|
|
19
19
|
base: '!outline-none min-h-8 px-md rounded-small text-foreground-300 !outline-none data-[selected=true]:text-foreground gap-1',
|
|
20
|
-
title: 'text-tiny font-medium',
|
|
20
|
+
title: 'text-tiny font-medium antialiased',
|
|
21
21
|
selectedIcon: '[&>svg>polyline]:stroke-[2.5]'
|
|
22
22
|
},
|
|
23
23
|
shadow: {
|
|
@@ -8,7 +8,7 @@ const UXDropdown = /*#__PURE__*/ forwardRef((props, ref)=>{
|
|
|
8
8
|
ref: ref,
|
|
9
9
|
classNames: {
|
|
10
10
|
content: [
|
|
11
|
-
'text-tiny p-2.5 text-foreground-300 rounded-medium no-scrollbar shadow-box',
|
|
11
|
+
'text-tiny p-2.5 text-foreground-300 rounded-medium no-scrollbar shadow-box antialiased',
|
|
12
12
|
content
|
|
13
13
|
],
|
|
14
14
|
...restClassNames
|
|
@@ -16,7 +16,7 @@ const ExtendedPopover = extendVariants(Popover, {
|
|
|
16
16
|
color: {
|
|
17
17
|
default: {
|
|
18
18
|
base: 'before:bg-content1 before:shadow-box',
|
|
19
|
-
content: 'bg-content1 text-foreground-300 shadow-box text-tiny'
|
|
19
|
+
content: 'bg-content1 text-foreground-300 shadow-box text-tiny antialiased'
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
},
|
|
@@ -35,7 +35,7 @@ const UXSelect = /*#__PURE__*/ forwardRef((props, ref)=>{
|
|
|
35
35
|
},
|
|
36
36
|
itemClasses: {
|
|
37
37
|
base: '!outline-none min-h-8 px-md rounded-small text-foreground-300 !outline-none data-[hover=true]:bg-background-200 data-[selected=true]:text-foreground gap-1',
|
|
38
|
-
title: 'text-tiny font-medium',
|
|
38
|
+
title: 'text-tiny font-medium antialiased',
|
|
39
39
|
selectedIcon: '[&>svg>polyline]:stroke-[2.5]'
|
|
40
40
|
}
|
|
41
41
|
},
|
|
@@ -16,7 +16,7 @@ const ExtendedTooltip = extendVariants(Tooltip, {
|
|
|
16
16
|
color: {
|
|
17
17
|
default: {
|
|
18
18
|
base: 'before:bg-content1 before:shadow-box',
|
|
19
|
-
content: 'bg-content1 text-foreground-300 shadow-box text-tiny leading-1.4 break-words wrap-break-word'
|
|
19
|
+
content: 'bg-content1 text-foreground-300 shadow-box text-tiny leading-1.4 break-words wrap-break-word antialiased'
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@particle-network/ui-react",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"@types/react": "^19.1.10",
|
|
40
40
|
"react": "^19.1.0",
|
|
41
41
|
"typescript": "^5.8.3",
|
|
42
|
-
"@particle-network/
|
|
43
|
-
"@particle-network/
|
|
42
|
+
"@particle-network/lintstaged-config": "0.1.0",
|
|
43
|
+
"@particle-network/eslint-config": "0.3.0"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"react": ">=16.9.0",
|