@hanwha-ss1/plugin 0.6.3-beta.9 → 0.6.3

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.
@@ -68,6 +68,13 @@ class KeyboardMenu: UIStackView {
68
68
  self.spacing = 0
69
69
  self.translatesAutoresizingMaskIntoConstraints = false
70
70
  self.heightAnchor.constraint(equalToConstant: 66).isActive = true
71
+
72
+ // Add shadow
73
+ self.layer.shadowColor = UIColor.black.cgColor
74
+ self.layer.shadowOpacity = 0.16
75
+ self.layer.shadowOffset = CGSize(width: 0, height: 0)
76
+ self.layer.shadowRadius = 16 // 1rem = 16px
77
+ self.layer.masksToBounds = false
71
78
 
72
79
  // keyboardMenu.bottomAnchor.constraint(equalTo: self.view.bottomAnchor).isActive = true
73
80
  // keyboardMenu.heightAnchor.constraint(equalToConstant: 50).isActive = true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hanwha-ss1/plugin",
3
- "version": "0.6.3-beta.9",
3
+ "version": "0.6.3",
4
4
  "description": "Plugin",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",