@jegdev/sema-ui 0.0.7 → 0.0.9-beta.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/package.json CHANGED
@@ -1,53 +1,61 @@
1
- {
2
- "name": "@jegdev/sema-ui",
3
- "private": false,
4
- "version": "0.0.7",
5
- "description": "Una colección de componentes Lit minimalistas estilo Swiss Design",
6
- "keywords": [
7
- "Next",
8
- "React",
9
- "Angular",
10
- "Vue",
11
- "Astro",
12
- "Lit"
13
- ],
14
- "type": "module",
15
- "files": [
16
- "dist",
17
- "src/index.d.ts"
18
- ],
19
- "license": "MIT",
20
- "author": "JEG Dev Studios",
21
- "contributors": [
22
- "JhonnDevJS",
23
- "JasubiPL"
24
- ],
25
- "main": "./dist/sema-ui.umd.js",
26
- "module": "./dist/sema-ui.es.js",
27
- "types": "./src/index.d.ts",
28
- "homepage": "https://github.com/JEGDevStudios/Sema-UI",
29
- "repository": {
30
- "type": "git",
31
- "url": "https://github.com/JEGDevStudios/Sema-UI"
32
- },
33
- "exports": {
34
- ".": {
35
- "types": "./src/index.d.ts",
36
- "import": "./dist/sema-ui.es.js",
37
- "require": "./dist/sema-ui.umd.js"
38
- }
39
- },
40
- "publishConfig": {
41
- "access": "public"
42
- },
43
- "scripts": {
44
- "dev": "vite",
45
- "build": "vite build"
46
- },
47
- "dependencies": {
48
- "lit": "^3.0.0"
49
- },
50
- "devDependencies": {
51
- "vite": "^7.3.1"
52
- }
53
- }
1
+ {
2
+ "name": "@jegdev/sema-ui",
3
+ "private": false,
4
+ "version": "0.0.9-beta.1",
5
+ "description": "Una colección de componentes Lit minimalistas estilo Swiss Design",
6
+ "keywords": [
7
+ "Next",
8
+ "React",
9
+ "Angular",
10
+ "Vue",
11
+ "Astro",
12
+ "Lit",
13
+ "web",
14
+ "components",
15
+ "ui",
16
+ "seo",
17
+ "JEGDevStudios",
18
+ "jegdev"
19
+ ],
20
+ "type": "module",
21
+ "files": [
22
+ "dist",
23
+ "src/index.d.ts"
24
+ ],
25
+ "license": "MIT",
26
+ "author": "JEG Dev Studios",
27
+ "contributors": [
28
+ "JhonnDevJS"
29
+ ],
30
+ "main": "./dist/sema-ui.umd.js",
31
+ "module": "./dist/sema-ui.es.js",
32
+ "types": "./dist/index.d.ts",
33
+ "homepage": "https://github.com/JEGDevStudios/Sema-UI",
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "https://github.com/JEGDevStudios/Sema-UI"
37
+ },
38
+ "exports": {
39
+ ".": {
40
+ "types": "./src/index.d.ts",
41
+ "import": "./dist/sema-ui.es.js",
42
+ "require": "./dist/sema-ui.umd.js"
43
+ }
44
+ },
45
+ "publishConfig": {
46
+ "access": "public"
47
+ },
48
+ "scripts": {
49
+ "dev": "vite",
50
+ "build": "vite build"
51
+ },
52
+ "dependencies": {
53
+ "lit": "^3.0.0"
54
+ },
55
+ "devDependencies": {
56
+ "tslib": "^2.8.1",
57
+ "typescript": "^5.9.3",
58
+ "vite": "^7.3.1",
59
+ "vite-plugin-dts": "^4.5.4"
60
+ }
61
+ }
package/src/index.d.ts DELETED
@@ -1,48 +0,0 @@
1
- import { LitElement } from 'lit';
2
-
3
- export class SemaButton extends LitElement {
4
- mode: 'outline' | 'ghost' | '' | string;
5
- kind: 'link' | 'button' | string;
6
- custom: 'on' | 'off' | string;
7
- firstColor: string;
8
- secondaryColor: string;
9
- size: 'sm' | 'md' | 'lg' | 'full' | string;
10
- fontSize: 'sm' | 'md' | 'lg' | 'xl' | string;
11
- url: string;
12
- target: '_blank' | '_self' | '_parent' | '_top' | string;
13
- altText: string;
14
- }
15
-
16
- declare global {
17
- interface HTMLElementTagNameMap {
18
- "sema-button": SemaButton;
19
- }
20
-
21
- namespace JSX {
22
- interface IntrinsicElements {
23
- "sema-button": {
24
- mode?: 'outline' | 'ghost' | '' | string;
25
- kind?: 'link' | 'button' | string;
26
- custom?: 'on' | 'off' | string;
27
- firstColor?: string;
28
- "first-color"?: string;
29
-
30
- secondaryColor?: string;
31
- "secondary-color"?: string;
32
-
33
- size?: 'sm' | 'md' | 'lg' | 'full' | string;
34
-
35
- fontSize?: 'sm' | 'md' | 'lg' | 'xl' | string;
36
- "font-size"?: string;
37
-
38
- url?: string;
39
- target?: string;
40
-
41
- altText?: string;
42
- "alt-text"?: string;
43
- children?: any;
44
- [key: string]: any;
45
- };
46
- }
47
- }
48
- }