app-studio 0.2.18 → 0.2.20
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/appstudio.cjs.development.js +408 -410
- package/dist/appstudio.cjs.development.js.map +1 -1
- package/dist/appstudio.cjs.production.min.js +1 -1
- package/dist/appstudio.cjs.production.min.js.map +1 -1
- package/dist/appstudio.esm.js +408 -410
- package/dist/appstudio.esm.js.map +1 -1
- package/dist/appstudio.umd.development.js +408 -410
- package/dist/appstudio.umd.development.js.map +1 -1
- package/dist/appstudio.umd.production.min.js +1 -1
- package/dist/appstudio.umd.production.min.js.map +1 -1
- package/dist/components/Element.d.ts +1 -0
- package/dist/providers/Responsive.d.ts +1 -6
- package/dist/utils/cssClass.d.ts +2 -0
- package/dist/utils/style.d.ts +2 -1
- package/package.json +4 -2
package/dist/utils/style.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
export declare const StyleProps:
|
|
1
|
+
export declare const StyleProps: string[];
|
|
2
|
+
export declare const StyledProps: Set<string>;
|
|
2
3
|
export declare const setSize: (newSize: string | number, styleProps: Record<string, any>) => void;
|
|
3
4
|
export declare const styleObjectToCss: (styleObj: Record<string, any>) => string;
|
|
4
5
|
export declare const toKebabCase: (str: string) => string;
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.2.
|
|
2
|
+
"version": "0.2.20",
|
|
3
3
|
"name": "app-studio",
|
|
4
4
|
"description": "App Studio is a responsive and themeable framework to build cross platform applications",
|
|
5
5
|
"repository": "git@github.com:rize-network/app-studio.git",
|
|
@@ -79,7 +79,8 @@
|
|
|
79
79
|
"dependencies": {
|
|
80
80
|
"@emotion/is-prop-valid": "^1.2.1",
|
|
81
81
|
"@emotion/unitless": "^0.8.1",
|
|
82
|
-
"color-convert": "^2.0.1"
|
|
82
|
+
"color-convert": "^2.0.1",
|
|
83
|
+
"murmurhash-js": "^1.0.0"
|
|
83
84
|
},
|
|
84
85
|
"devDependencies": {
|
|
85
86
|
"@babel/core": "^7.23.2",
|
|
@@ -96,6 +97,7 @@
|
|
|
96
97
|
"@storybook/react-webpack5": "^7.5.3",
|
|
97
98
|
"@storybook/testing-library": "^0.2.2",
|
|
98
99
|
"@types/color": "^3.0.6",
|
|
100
|
+
"@types/murmurhash-js": "^1.0.6",
|
|
99
101
|
"@types/react": "^18.2.37",
|
|
100
102
|
"@types/react-dom": "^18.2.15",
|
|
101
103
|
"@typescript-eslint/eslint-plugin": "^6.10.0",
|