@muraldevkit/ui-toolkit 2.34.0 → 2.34.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.
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Check if the device is a touch device
3
+ *
4
+ * @returns {boolean} - True if the device is a touch device
5
+ */
6
+ export declare const isTouchDevice: () => boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muraldevkit/ui-toolkit",
3
- "version": "2.34.0",
3
+ "version": "2.34.1",
4
4
  "description": "Mural's UI Toolkit",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -25,6 +25,7 @@
25
25
  "lint:scripts:fix": "eslint '**/*.{js,jsx,ts,tsx}' --fix",
26
26
  "lint:styles:fix": "stylelint --fix src/components/**/*.{css,scss}",
27
27
  "prebuild": "rimraf dist",
28
+ "create-component": "./scripts/createComponent.sh; npm run lint:fix;",
28
29
  "prepare": "husky install",
29
30
  "publish:local": "npm run build && npm pack",
30
31
  "release": "npx semantic-release",