@aminnausin/cedar-ui 0.0.7 → 0.0.8
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
CHANGED
|
@@ -244,6 +244,25 @@ export declare type TableSortOption = {
|
|
|
244
244
|
disabled?: boolean;
|
|
245
245
|
};
|
|
246
246
|
|
|
247
|
+
export declare interface TabsContentProps {
|
|
248
|
+
value: string;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
export declare interface TabsMarkerProps {
|
|
252
|
+
orientation?: TabsOrientation;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
export declare type TabsOrientation = 'horizontal' | 'vertical';
|
|
256
|
+
|
|
257
|
+
export declare interface TabsProps {
|
|
258
|
+
defaultValue: string;
|
|
259
|
+
orientation?: TabsOrientation;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
export declare interface TabsTriggerProps {
|
|
263
|
+
value: string;
|
|
264
|
+
}
|
|
265
|
+
|
|
247
266
|
export declare const toast: typeof toastFunction & {
|
|
248
267
|
add: (message: string, options?: ToastOptions) => string;
|
|
249
268
|
success: (message: string, options?: ToastOptions) => string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aminnausin/cedar-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"typescript",
|
|
21
21
|
"pines-ui"
|
|
22
22
|
],
|
|
23
|
+
"type": "module",
|
|
23
24
|
"main": "./dist/cedar-ui.umd.mjs",
|
|
24
25
|
"module": "./dist/cedar-ui.mjs",
|
|
25
26
|
"types": "./dist/index.d.ts",
|
|
@@ -35,6 +36,18 @@
|
|
|
35
36
|
"LICENSE",
|
|
36
37
|
"README.md"
|
|
37
38
|
],
|
|
39
|
+
"scripts": {
|
|
40
|
+
"dev": "vite",
|
|
41
|
+
"build": "npm run type-check && npm run build-only",
|
|
42
|
+
"preview": "vite preview",
|
|
43
|
+
"build-only": "vite build",
|
|
44
|
+
"type-check": "vue-tsc --build",
|
|
45
|
+
"lint": "eslint . --fix",
|
|
46
|
+
"format": "prettier --write src/",
|
|
47
|
+
"pub:beta": "pnpm build && npm publish --no-git-checks --access public --tag beta",
|
|
48
|
+
"pub:next": "pnpm build && npm publish --no-git-checks --access public --tag next",
|
|
49
|
+
"pub:release": "pnpm build && npm publish --no-git-checks --access public"
|
|
50
|
+
},
|
|
38
51
|
"dependencies": {
|
|
39
52
|
"clsx": "^2.1.1",
|
|
40
53
|
"fast-deep-equal": "^3.1.3",
|
|
@@ -43,12 +56,9 @@
|
|
|
43
56
|
"tailwind-scrollbar-hide": "^2.0.0"
|
|
44
57
|
},
|
|
45
58
|
"peerDependencies": {
|
|
46
|
-
"@tailwindcss/aspect-ratio": ">=0.4.2",
|
|
47
|
-
"@tailwindcss/forms": ">=0.5.10",
|
|
48
59
|
"@vueuse/components": ">=10.11.1 <14.0.0",
|
|
49
60
|
"@vueuse/core": ">=10.11.1 <14.0.0",
|
|
50
61
|
"@vueuse/integrations": ">=11.3.0 <14.0.0",
|
|
51
|
-
"tailwindcss": ">=3.4.17",
|
|
52
62
|
"vue": ">=3.5.13 <4.0.0",
|
|
53
63
|
"vue-router": ">=4.5.0 <5.0.0"
|
|
54
64
|
},
|
|
@@ -58,25 +68,11 @@
|
|
|
58
68
|
"@types/node": "^22.17.0",
|
|
59
69
|
"@vitejs/plugin-vue": "^5.2.4",
|
|
60
70
|
"@vue/tsconfig": "^0.7.0",
|
|
61
|
-
"autoprefixer": "^10.4.21",
|
|
62
|
-
"postcss": "^8.5.6",
|
|
63
71
|
"prettier": "3.5.3",
|
|
64
72
|
"typescript": "~5.9.2",
|
|
65
73
|
"vite": "^6.3.5",
|
|
66
74
|
"vite-plugin-dts": "^4.5.4",
|
|
67
75
|
"vite-plugin-vue-devtools": "^7.7.7",
|
|
68
76
|
"vue-tsc": "^2.2.12"
|
|
69
|
-
},
|
|
70
|
-
"scripts": {
|
|
71
|
-
"dev": "vite",
|
|
72
|
-
"build": "npm run type-check && npm run build-only",
|
|
73
|
-
"preview": "vite preview",
|
|
74
|
-
"build-only": "vite build",
|
|
75
|
-
"type-check": "vue-tsc --build",
|
|
76
|
-
"lint": "eslint . --fix",
|
|
77
|
-
"format": "prettier --write src/",
|
|
78
|
-
"pub:beta": "pnpm build && pnpm publish --no-git-checks --access public --tag beta",
|
|
79
|
-
"pub:next": "pnpm build && pnpm publish --no-git-checks --access public --tag next",
|
|
80
|
-
"pub:release": "pnpm build && pnpm publish --no-git-checks --access public"
|
|
81
77
|
}
|
|
82
|
-
}
|
|
78
|
+
}
|
package/dist/cedar-ui.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@tailwind base;@tailwind components;@tailwind utilities;@layer utilities{input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}}@layer base{[v-cloak]{display:none}@supports (scrollbar-width: thin){.scrollbar-thin{scrollbar-width:thin}}@supports selector(::-webkit-scrollbar){.scrollbar-minimal::-webkit-scrollbar{width:.35rem}.scrollbar-minimal-x::-webkit-scrollbar{height:.35rem}.scrollbar-minimal::-webkit-scrollbar-track,.scrollbar-minimal-x::-webkit-scrollbar-track{background:transparent;border-radius:9999px}.scrollbar-minimal::-webkit-scrollbar-thumb,.scrollbar-minimal-x::-webkit-scrollbar-thumb{background:#8a8a8a;border-radius:9999px}.scrollbar-minimal::-webkit-scrollbar-thumb:hover,.scrollbar-minimal-x::-webkit-scrollbar-thumb:hover{background:#636363}.scrollbar-minimal:is(.dark *)::-webkit-scrollbar-thumb,.scrollbar-minimal-x:is(.dark *)::-webkit-scrollbar-thumb{background:#9e9e9e}.scrollbar-minimal:is(.dark *)::-webkit-scrollbar-thumb:hover,.scrollbar-minimal-x:is(.dark *)::-webkit-scrollbar-thumb:hover{background:#d0d0d0}.scrollbar-minimal.scrollbar-hover::-webkit-scrollbar{width:0rem}.group:hover .scrollbar-minimal.scrollbar-hover::-webkit-scrollbar{width:.35rem}.scrollbar-minimal-x.scrollbar-hover::-webkit-scrollbar{height:0rem}.group:hover .scrollbar-minimal-x.scrollbar-hover::-webkit-scrollbar{height:.35rem}.supports-scrollbars{animation:detect-scroll linear;animation-timeline:scroll(self);padding-right:var(--can-scroll) theme("spacing.3")}}}
|
|
File without changes
|
|
File without changes
|