@xplortech/apollo-react 1.0.0-beta.7 → 2.4.2
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/README.md +5 -15
- package/css/.gitkeep +0 -0
- package/css/apollo.css +6822 -0
- package/dist/components.d.ts +27 -1
- package/dist/components.js +57 -33
- package/dist/components.js.map +1 -1
- package/dist/react-component-lib/createComponent.d.ts +1 -1
- package/dist/react-component-lib/createComponent.js +15 -9
- package/dist/react-component-lib/createComponent.js.map +1 -1
- package/dist/react-component-lib/createOverlayComponent.d.ts +5 -4
- package/dist/react-component-lib/createOverlayComponent.js +18 -10
- package/dist/react-component-lib/createOverlayComponent.js.map +1 -1
- package/dist/react-component-lib/utils/attachProps.d.ts +3 -6
- package/dist/react-component-lib/utils/attachProps.js +21 -25
- package/dist/react-component-lib/utils/attachProps.js.map +1 -1
- package/dist/react-component-lib/utils/case.js.map +1 -1
- package/dist/react-component-lib/utils/dev.js.map +1 -1
- package/dist/react-component-lib/utils/index.d.ts +4 -1
- package/dist/react-component-lib/utils/index.js +14 -4
- package/dist/react-component-lib/utils/index.js.map +1 -1
- package/package.json +59 -13
- /package/{licence → LICENSE} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/react-component-lib/utils/index.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/react-component-lib/utils/index.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAW1B,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC,GAA+D,EAAE,KAAU,EAAE,EAAE;IACpG,IAAI,OAAO,GAAG,KAAK,UAAU,EAAE,CAAC;QAC9B,GAAG,CAAC,KAAK,CAAC,CAAC;IACb,CAAC;SAAM,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAEtB,GAAmC,CAAC,OAAO,GAAG,KAAK,CAAC;IACvD,CAAC;AACH,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,SAAS,GAAG,CACvB,GAAG,IAAoE,EAC/C,EAAE;IAC1B,OAAO,CAAC,KAAU,EAAE,EAAE;QACpB,IAAI,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,EAAE;YACnB,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;QACrB,CAAC,CAAC,CAAC;IACL,CAAC,CAAC;AACJ,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAwB,cAAmB,EAAE,WAAmB,EAAE,EAAE;IAClG,MAAM,UAAU,GAAG,CACjB,KAAuD,EACvD,GAA0C,EAC1C,EAAE;QACF,OAAO,KAAC,cAAc,oBAAK,KAAK,IAAE,YAAY,EAAE,GAAG,IAAI,CAAC;IAC1D,CAAC,CAAC;IACF,UAAU,CAAC,WAAW,GAAG,WAAW,CAAC;IAErC,OAAO,KAAK,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;AACtC,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,OAAe,EAAE,aAAkB,EAAE,EAAE;IACzE,IAAI,aAAa,KAAK,SAAS,IAAI,OAAO,cAAc,KAAK,WAAW,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC;QACzG,cAAc,CAAC,MAAM,CAAC,OAAO,EAAE,aAAa,CAAC,CAAC;IAChD,CAAC;AACH,CAAC,CAAC;AAEF,cAAc,eAAe,CAAC;AAC9B,cAAc,QAAQ,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,36 +1,59 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xplortech/apollo-react",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.4.2",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
|
+
"private": false,
|
|
8
|
+
"publishConfig": {
|
|
9
|
+
"access": "public",
|
|
10
|
+
"provenance": false
|
|
11
|
+
},
|
|
12
|
+
"author": "Xplor Technologies",
|
|
13
|
+
"homepage": "https://github.com/xplor/apollo#readme",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/xplor/apollo/issues"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"apollo",
|
|
19
|
+
"design-system",
|
|
20
|
+
"web-components",
|
|
21
|
+
"xplor"
|
|
22
|
+
],
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=18"
|
|
25
|
+
},
|
|
26
|
+
"sideEffects": false,
|
|
7
27
|
"files": [
|
|
28
|
+
"css/",
|
|
8
29
|
"dist/"
|
|
9
30
|
],
|
|
10
31
|
"scripts": {
|
|
11
32
|
"build": "npm run clean && npm run compile",
|
|
12
33
|
"clean": "rm -rf dist",
|
|
13
34
|
"compile": "npm run tsc",
|
|
14
|
-
"
|
|
15
|
-
"
|
|
35
|
+
"release": "release-it",
|
|
36
|
+
"tsc": "tsc -p ."
|
|
16
37
|
},
|
|
17
38
|
"devDependencies": {
|
|
18
|
-
"@types/jest": "29.
|
|
39
|
+
"@types/jest": "^29.5.14",
|
|
19
40
|
"@types/node": "^18.14.1",
|
|
20
|
-
"@types/react": "18.
|
|
21
|
-
"@types/react-dom": "18.
|
|
22
|
-
"jest": "^29.
|
|
41
|
+
"@types/react": "18.3.1",
|
|
42
|
+
"@types/react-dom": "18.3.1",
|
|
43
|
+
"jest": "^29.7.0",
|
|
23
44
|
"np": "^7.6.3",
|
|
24
|
-
"react": "^
|
|
25
|
-
"react-dom": "^
|
|
26
|
-
"typescript": "^
|
|
45
|
+
"react": "^18.3.1",
|
|
46
|
+
"react-dom": "^18.3.1",
|
|
47
|
+
"typescript": "^5.5.3"
|
|
27
48
|
},
|
|
28
49
|
"dependencies": {
|
|
29
|
-
"@xplortech/apollo-core": "
|
|
50
|
+
"@xplortech/apollo-core": "2.4.2",
|
|
51
|
+
"@xplortech/apollo-icons": "^0.2.2"
|
|
30
52
|
},
|
|
31
53
|
"peerDependencies": {
|
|
32
|
-
"react": "
|
|
33
|
-
"react-dom": "
|
|
54
|
+
"react": ">=16.7",
|
|
55
|
+
"react-dom": ">=16.7",
|
|
56
|
+
"typescript": ">=5"
|
|
34
57
|
},
|
|
35
58
|
"jest": {
|
|
36
59
|
"preset": "ts-jest",
|
|
@@ -39,5 +62,28 @@
|
|
|
39
62
|
"node_modules",
|
|
40
63
|
"dist"
|
|
41
64
|
]
|
|
65
|
+
},
|
|
66
|
+
"release-it": {
|
|
67
|
+
"git": false,
|
|
68
|
+
"github": {
|
|
69
|
+
"no-increment": false
|
|
70
|
+
},
|
|
71
|
+
"npm": {
|
|
72
|
+
"publish": true,
|
|
73
|
+
"skipChecks": true,
|
|
74
|
+
"publishArgs": [
|
|
75
|
+
"--no-provenance"
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
"plugins": {
|
|
79
|
+
"@release-it/bumper": {
|
|
80
|
+
"out": {
|
|
81
|
+
"file": "package.json",
|
|
82
|
+
"path": [
|
|
83
|
+
"dependencies.@xplortech/apollo-core"
|
|
84
|
+
]
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
42
88
|
}
|
|
43
89
|
}
|
/package/{licence → LICENSE}
RENAMED
|
File without changes
|