maquinaweb-ui 2.5.0 → 2.6.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 +1 -19
- package/dist/index.d.ts +0 -26
package/package.json
CHANGED
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "maquinaweb-ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.1",
|
|
4
4
|
"description": "A minimal React component library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"exports": {
|
|
8
|
-
".": {
|
|
9
|
-
"types": "./dist/index.d.ts"
|
|
10
|
-
},
|
|
11
8
|
"./text-field": {
|
|
12
9
|
"import": "./dist/text-field.js",
|
|
13
10
|
"types": "./dist/text-field.d.ts"
|
|
@@ -109,20 +106,5 @@
|
|
|
109
106
|
},
|
|
110
107
|
"publishConfig": {
|
|
111
108
|
"access": "public"
|
|
112
|
-
},
|
|
113
|
-
"main": "./dist/index.d.ts",
|
|
114
|
-
"types": "./dist/index.d.ts",
|
|
115
|
-
"typesVersions": {
|
|
116
|
-
"*": {
|
|
117
|
-
"text-field": [
|
|
118
|
-
"./dist/text-field.d.ts"
|
|
119
|
-
],
|
|
120
|
-
"container-animation": [
|
|
121
|
-
"./dist/container-animation.d.ts"
|
|
122
|
-
],
|
|
123
|
-
"split-text-poor": [
|
|
124
|
-
"./dist/split-text-poor.d.ts"
|
|
125
|
-
]
|
|
126
|
-
}
|
|
127
109
|
}
|
|
128
110
|
}
|
package/dist/index.d.ts
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
// Auto-generated type declarations for IDE auto-import support
|
|
2
|
-
// Components must be imported from their specific subpaths:
|
|
3
|
-
// Example: import { SplitTextPoor } from 'maquinaweb-ui/split-text-poor'
|
|
4
|
-
//
|
|
5
|
-
// DO NOT import from 'maquinaweb-ui' directly - there is no default export.
|
|
6
|
-
// The package exports only subpaths for optimal tree-shaking.
|
|
7
|
-
|
|
8
|
-
// Module declarations for auto-import discovery
|
|
9
|
-
declare module "maquinaweb-ui/text-field" {
|
|
10
|
-
export { InputText } from "maquinaweb-ui/dist/text-field";
|
|
11
|
-
export { InputTextProps } from "maquinaweb-ui/dist/text-field";
|
|
12
|
-
export { QueryTextField } from "maquinaweb-ui/dist/text-field";
|
|
13
|
-
export { QueryTextFieldProps } from "maquinaweb-ui/dist/text-field";
|
|
14
|
-
export { TextField } from "maquinaweb-ui/dist/text-field";
|
|
15
|
-
export { TextFieldProps } from "maquinaweb-ui/dist/text-field";
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
declare module "maquinaweb-ui/container-animation" {
|
|
19
|
-
export { ContainerAnimation } from "maquinaweb-ui/dist/container-animation";
|
|
20
|
-
export { ContainerAnimationProps } from "maquinaweb-ui/dist/container-animation";
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
declare module "maquinaweb-ui/split-text-poor" {
|
|
24
|
-
export { SplitTextPoor } from "maquinaweb-ui/dist/split-text-poor";
|
|
25
|
-
export { SplitTextPoorProps } from "maquinaweb-ui/dist/split-text-poor";
|
|
26
|
-
}
|