tera-system-ui 0.0.36 → 0.0.37
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/astro/index.d.ts +1 -0
- package/dist/astro/index.js +1 -0
- package/dist/components/dialog/index.d.ts +0 -1
- package/dist/components/dialog/index.js +0 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +100 -96
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as DialogAstro } from '../components/dialog/Dialog.astro';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as DialogAstro } from '../components/dialog/Dialog.astro';
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export { BrandLogo } from './components/brand-logo';
|
|
|
3
3
|
export { Button } from './components/button';
|
|
4
4
|
export { Combobox } from './components/combobox';
|
|
5
5
|
export { Command } from './components/command';
|
|
6
|
-
export { Dialog
|
|
6
|
+
export { Dialog } from './components/dialog';
|
|
7
7
|
export { DropdownMenu, DropdownMenuItem, DropdownMenuGroup, DropdownMenuHeader, DropdownMenuSeparator } from './components/dropdown-menu';
|
|
8
8
|
export { Header } from './components/header';
|
|
9
9
|
export { IconArrowBigRightFilled, IconBook, IconBookmarkPlus, IconCalculator, IconCheck, IconChevronDown, IconCopy, IconCopyCheckFilled, IconHamburger, IconLanguage, IconLoader2, IconLogout, IconMoon, IconPointFilled, IconSearch, IconSettings, IconSun, IconSwitchHorizontal, IconSwitchVertical, IconTransform, IconX } from './components/icons';
|
package/dist/index.js
CHANGED
|
@@ -3,7 +3,7 @@ export { BrandLogo } from './components/brand-logo';
|
|
|
3
3
|
export { Button } from './components/button';
|
|
4
4
|
export { Combobox } from './components/combobox';
|
|
5
5
|
export { Command } from './components/command';
|
|
6
|
-
export { Dialog
|
|
6
|
+
export { Dialog } from './components/dialog';
|
|
7
7
|
export { DropdownMenu, DropdownMenuItem, DropdownMenuGroup, DropdownMenuHeader, DropdownMenuSeparator } from './components/dropdown-menu';
|
|
8
8
|
export { Header } from './components/header';
|
|
9
9
|
export { IconArrowBigRightFilled, IconBook, IconBookmarkPlus, IconCalculator, IconCheck, IconChevronDown, IconCopy, IconCopyCheckFilled, IconHamburger, IconLanguage, IconLoader2, IconLogout, IconMoon, IconPointFilled, IconSearch, IconSettings, IconSun, IconSwitchHorizontal, IconSwitchVertical, IconTransform, IconX } from './components/icons';
|
package/package.json
CHANGED
|
@@ -1,98 +1,102 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
2
|
+
"name": "tera-system-ui",
|
|
3
|
+
"version": "0.0.37",
|
|
4
|
+
"scripts": {
|
|
5
|
+
"dev": "vite dev",
|
|
6
|
+
"build": "npm run customPrepublish && npm run generate-index && vite build && npm run package && npm run postpublish",
|
|
7
|
+
"preview": "vite preview",
|
|
8
|
+
"package": "svelte-kit sync && svelte-package && publint",
|
|
9
|
+
"customPrepublish": "node ./scripts/prepublish.js",
|
|
10
|
+
"postpublish": "node ./scripts/postpublish.js",
|
|
11
|
+
"prepublishOnly": "npm run lang-compile && npm run customPrepublish && npm run generate-index && npm run package",
|
|
12
|
+
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
13
|
+
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
14
|
+
"storybook": "storybook dev -p 6006",
|
|
15
|
+
"build-storybook": "storybook build",
|
|
16
|
+
"lang-compile": "paraglide-js compile --project ./project.inlang --outdir ./src/lib/paraglide",
|
|
17
|
+
"generate-index": "node ./scripts/generate-ts-index.js"
|
|
18
|
+
},
|
|
19
|
+
"bin": {
|
|
20
|
+
"ui": "./scripts/add-component-template.js",
|
|
21
|
+
"gen": "./scripts/generate-ts-index.js"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"dist",
|
|
25
|
+
"!dist/**/*.test.*",
|
|
26
|
+
"!dist/**/*.spec.*"
|
|
27
|
+
],
|
|
28
|
+
"sideEffects": [
|
|
29
|
+
"**/*.css"
|
|
30
|
+
],
|
|
31
|
+
"svelte": "./dist/index.js",
|
|
32
|
+
"types": "dist/index.d.ts",
|
|
33
|
+
"type": "module",
|
|
34
|
+
"main": "dist/index.js",
|
|
35
|
+
"exports": {
|
|
36
|
+
".": {
|
|
37
|
+
"types": "./dist/index.d.ts",
|
|
38
|
+
"svelte": "./dist/index.js",
|
|
39
|
+
"default": "./dist/index.js"
|
|
40
|
+
},
|
|
41
|
+
"./i18n": {
|
|
42
|
+
"types": "./dist/i18n/index.d.ts",
|
|
43
|
+
"svelte": "./dist/i18n/index.js",
|
|
44
|
+
"default": "./dist/i18n/index.js"
|
|
45
|
+
},
|
|
46
|
+
"./icons": {
|
|
47
|
+
"types": "./dist/components/icons/index.d.ts",
|
|
48
|
+
"svelte": "./dist/components/icons/index.js",
|
|
49
|
+
"default": "./dist/components/icons/index.js"
|
|
50
|
+
},
|
|
51
|
+
"./astro": {
|
|
52
|
+
"types": "./dist/astro/index.d.ts",
|
|
53
|
+
"default": "./dist/astro/index.js"
|
|
54
|
+
},
|
|
55
|
+
"./command": {
|
|
56
|
+
"types": "./dist/components/command/index.d.ts",
|
|
57
|
+
"svelte": "./dist/components/command/index.js",
|
|
58
|
+
"default": "./dist/components/command/index.js"
|
|
59
|
+
},
|
|
60
|
+
"./themes/tw-preset": "./dist/themes/tw-preset.cjs",
|
|
61
|
+
"./themes/tera-ui-base": "./dist/themes/tera-ui-base.css"
|
|
62
|
+
},
|
|
63
|
+
"peerDependencies": {
|
|
64
|
+
"svelte": "^5.0.0"
|
|
65
|
+
},
|
|
66
|
+
"devDependencies": {
|
|
67
|
+
"@chromatic-com/storybook": "^3.2.2",
|
|
68
|
+
"@storybook/addon-essentials": "^8.4.4",
|
|
69
|
+
"@storybook/addon-interactions": "^8.4.4",
|
|
70
|
+
"@storybook/addon-links": "^8.4.4",
|
|
71
|
+
"@storybook/addon-styling": "^1.3.7",
|
|
72
|
+
"@storybook/addon-svelte-csf": "^5.0.0-next.11",
|
|
73
|
+
"@storybook/addon-themes": "^8.4.4",
|
|
74
|
+
"@storybook/addon-viewport": "^8.4.4",
|
|
75
|
+
"@storybook/blocks": "^8.4.4",
|
|
76
|
+
"@storybook/svelte": "^8.4.4",
|
|
77
|
+
"@storybook/sveltekit": "^8.4.4",
|
|
78
|
+
"@storybook/test": "^8.4.4",
|
|
79
|
+
"@sveltejs/adapter-auto": "^3.3.1",
|
|
80
|
+
"@sveltejs/kit": "^2.8.1",
|
|
81
|
+
"@sveltejs/package": "^2.3.7",
|
|
82
|
+
"@sveltejs/vite-plugin-svelte": "^4.0.1",
|
|
83
|
+
"npx": "^10.2.2",
|
|
84
|
+
"publint": "^0.2.12",
|
|
85
|
+
"sass-embedded": "^1.81.0",
|
|
86
|
+
"storybook": "^8.4.4",
|
|
87
|
+
"svelte": "^5.2.1",
|
|
88
|
+
"svelte-check": "^4.0.8",
|
|
89
|
+
"tailwindcss": "^3.4.15",
|
|
90
|
+
"typescript": "^5.6.3",
|
|
91
|
+
"vite": "^5.4.11"
|
|
92
|
+
},
|
|
93
|
+
"dependencies": {
|
|
94
|
+
"@floating-ui/dom": "^1.6.12",
|
|
95
|
+
"@inlang/paraglide-sveltekit": "0.11.5",
|
|
96
|
+
"@tabler/icons-svelte": "^3.22.0",
|
|
97
|
+
"clsx": "^2.1.1",
|
|
98
|
+
"autoprefixer": "^10.4.20",
|
|
99
|
+
"@inlang/paraglide-js": "1.11.3",
|
|
100
|
+
"tailwind-variants": "^0.3.0"
|
|
101
|
+
}
|
|
98
102
|
}
|