@eightshift/frontend-libs-tailwind 1.3.2 → 1.3.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.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a CHANGELOG](https://keepachangelog.com/).
6
6
 
7
+ ## [1.3.3] - 2024-09-24
8
+ - Updating schema.
9
+
7
10
  ## [1.3.2] - 2024-09-19
8
11
  - Fixing theme options to use stringified JSON instead of an object.
9
12
 
@@ -46,6 +49,7 @@ This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a
46
49
 
47
50
  [Unreleased]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/master...HEAD
48
51
 
52
+ [1.3.3]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/1.3.2...1.3.3
49
53
  [1.3.2]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/1.3.1...1.3.2
50
54
  [1.3.1]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/1.3.0...1.3.1
51
55
  [1.3.0]: https://github.com/infinum/eightshift-frontend-libs-tailwind/compare/1.2.0...1.3.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eightshift/frontend-libs-tailwind",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "A framework for creating modern Gutenberg themes with styling provided by Tailwind CSS.",
5
5
  "author": {
6
6
  "name": "Eightshift team",
@@ -227,13 +227,13 @@
227
227
  "[a-zA-Z]": {
228
228
  "anyOf": [
229
229
  {
230
- "type": "string",
230
+ "type": ["string", "number", "boolean"],
231
231
  "minLength": 1
232
232
  },
233
233
  {
234
234
  "type": "array",
235
235
  "items": {
236
- "type": "string",
236
+ "type": ["string", "number", "boolean"],
237
237
  "minLength": 1
238
238
  }
239
239
  }
@@ -165,13 +165,13 @@
165
165
  "[a-zA-Z]": {
166
166
  "anyOf": [
167
167
  {
168
- "type": "string",
168
+ "type": ["string", "number", "boolean"],
169
169
  "minLength": 1
170
170
  },
171
171
  {
172
172
  "type": "array",
173
173
  "items": {
174
- "type": "string",
174
+ "type": ["string", "number", "boolean"],
175
175
  "minLength": 1
176
176
  }
177
177
  }