@gem-sdk/system 2.0.0-dev.215 → 2.0.0-dev.263
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/types/index.d.ts +4 -4
- package/package.json +2 -2
package/dist/types/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const createAttr: (obj: {
|
|
2
|
-
[key: string]: string | number;
|
|
2
|
+
[key: string]: string | number | boolean;
|
|
3
3
|
}) => {
|
|
4
|
-
[key: string]: string | number;
|
|
4
|
+
[key: string]: string | number | boolean;
|
|
5
5
|
} | undefined;
|
|
6
6
|
|
|
7
7
|
declare const createStyle: (obj: {
|
|
@@ -37,9 +37,9 @@ declare const Unless: (condition: boolean | null | undefined, trueResult: string
|
|
|
37
37
|
declare const LiquidUnless: (c: string, t: string | CallbackCondition, f?: string | CallbackCondition) => string;
|
|
38
38
|
|
|
39
39
|
declare const createAttrReact: (obj: {
|
|
40
|
-
[key: string]: string | number;
|
|
40
|
+
[key: string]: string | number | boolean;
|
|
41
41
|
}) => {
|
|
42
|
-
[key: string]: string | number;
|
|
42
|
+
[key: string]: string | number | boolean;
|
|
43
43
|
} | undefined;
|
|
44
44
|
|
|
45
45
|
declare const createContentReact: (content: string) => string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gem-sdk/system",
|
|
3
|
-
"version": "2.0.0-dev.
|
|
3
|
+
"version": "2.0.0-dev.263",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@gem-sdk/core": "2.0.0-dev.
|
|
24
|
+
"@gem-sdk/core": "2.0.0-dev.264"
|
|
25
25
|
},
|
|
26
26
|
"module": "dist/esm/index.js",
|
|
27
27
|
"types": "dist/types/index.d.ts",
|