@yanolja-next/ncp-ui 0.0.4 → 0.0.5
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/css/index.css
CHANGED
|
@@ -268,6 +268,9 @@
|
|
|
268
268
|
.ncp\:left-0 {
|
|
269
269
|
left: calc(var(--ncp-spacing) * 0);
|
|
270
270
|
}
|
|
271
|
+
.ncp\:left-1\/2 {
|
|
272
|
+
left: calc(1/2 * 100%);
|
|
273
|
+
}
|
|
271
274
|
.ncp\:left-2 {
|
|
272
275
|
left: calc(var(--ncp-spacing) * 2);
|
|
273
276
|
}
|
|
@@ -517,6 +520,10 @@
|
|
|
517
520
|
--tw-translate-x: 1px;
|
|
518
521
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
519
522
|
}
|
|
523
|
+
.ncp\:-translate-y-1\/2 {
|
|
524
|
+
--tw-translate-y: calc(calc(1/2 * 100%) * -1);
|
|
525
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
526
|
+
}
|
|
520
527
|
.ncp\:translate-y-\[-50\%\] {
|
|
521
528
|
--tw-translate-y: -50%;
|
|
522
529
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -740,6 +747,9 @@
|
|
|
740
747
|
.ncp\:fill-foreground {
|
|
741
748
|
fill: var(--foreground);
|
|
742
749
|
}
|
|
750
|
+
.ncp\:fill-primary {
|
|
751
|
+
fill: var(--primary);
|
|
752
|
+
}
|
|
743
753
|
.ncp\:p-0 {
|
|
744
754
|
padding: calc(var(--ncp-spacing) * 0);
|
|
745
755
|
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { RadioGroup as RadioGroupPrimitive } from 'radix-ui';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
declare function RadioGroup({ className, ...props }: React.ComponentProps<typeof RadioGroupPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare function RadioGroupItem({ className, ...props }: React.ComponentProps<typeof RadioGroupPrimitive.Item>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export { RadioGroup, RadioGroupItem };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yanolja-next/ncp-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.5",
|
|
5
5
|
"description": "Next Cloud Platform UI Component Library",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.cjs",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"class-variance-authority": "^0.7.1",
|
|
34
34
|
"clsx": "^2.1.1",
|
|
35
35
|
"lucide-react": "^0.545.0",
|
|
36
|
+
"radix-ui": "^1.4.3",
|
|
36
37
|
"tailwind-merge": "^3.3.1"
|
|
37
38
|
},
|
|
38
39
|
"peerDependencies": {
|