@bottlebooks/valid-values 10.24.1 → 10.25.0
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
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [10.25.0](https://github.com/bottlebooks/bottlebooks/compare/@bottlebooks/valid-values@10.24.1...@bottlebooks/valid-values@10.25.0) (2024-04-22)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- add Lagorthi ([44155ef](https://github.com/bottlebooks/bottlebooks/commit/44155ef25c41f8c4833c7461cd613a5fde657399))
|
|
11
|
+
|
|
6
12
|
## [10.24.1](https://github.com/bottlebooks/bottlebooks/compare/@bottlebooks/valid-values@10.24.0...@bottlebooks/valid-values@10.24.1) (2024-04-18)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
|
@@ -1998,6 +1998,7 @@ declare const allVarietyNames: {
|
|
|
1998
1998
|
readonly Minnella: VarietyName;
|
|
1999
1999
|
readonly Tortosi: VarietyName;
|
|
2000
2000
|
readonly Mavrokoudoura: VarietyName;
|
|
2001
|
+
readonly Lagorthi: VarietyName;
|
|
2001
2002
|
};
|
|
2002
2003
|
export type VarietyNameKey = keyof typeof allVarietyNames;
|
|
2003
2004
|
export default allVarietyNames;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"varietyName.d.ts","sourceRoot":"","sources":["../../../src/validValues/varietyName/varietyName.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AAE1E,UAAU,WAAY,SAAQ,oBAAoB;IAChD,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAKD,QAAA,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"varietyName.d.ts","sourceRoot":"","sources":["../../../src/validValues/varietyName/varietyName.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AAE1E,UAAU,WAAY,SAAQ,oBAAoB;IAChD,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAKD,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmzPX,CAAC;AAEX,MAAM,MAAM,cAAc,GAAG,MAAM,OAAO,eAAe,CAAC;AAC1D,eAAe,eAAe,CAAC"}
|
|
@@ -7992,6 +7992,10 @@ var allVarietyNames = {
|
|
|
7992
7992
|
Mavrokoudoura: varietyName({
|
|
7993
7993
|
key: 'Mavrokoudoura',
|
|
7994
7994
|
label: 'Mavrokoudoura'
|
|
7995
|
+
}),
|
|
7996
|
+
Lagorthi: varietyName({
|
|
7997
|
+
key: 'Lagorthi',
|
|
7998
|
+
label: 'Lagorthi'
|
|
7995
7999
|
})
|
|
7996
8000
|
};
|
|
7997
8001
|
var _default = allVarietyNames;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@bottlebooks/valid-values",
|
|
3
3
|
"description": "The Bottlebooks lookup values, defined globally.",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "10.
|
|
5
|
+
"version": "10.25.0",
|
|
6
6
|
"type": "commonjs",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@lingui/core": "3.14.0"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "34970e48ed4a1482b0c440c99590b9ea5b3a943f"
|
|
38
38
|
}
|
|
@@ -7990,6 +7990,10 @@ const allVarietyNames = {
|
|
|
7990
7990
|
key: 'Mavrokoudoura',
|
|
7991
7991
|
label: 'Mavrokoudoura',
|
|
7992
7992
|
}),
|
|
7993
|
+
Lagorthi: varietyName({
|
|
7994
|
+
key: 'Lagorthi',
|
|
7995
|
+
label: 'Lagorthi',
|
|
7996
|
+
}),
|
|
7993
7997
|
} as const;
|
|
7994
7998
|
|
|
7995
7999
|
export type VarietyNameKey = keyof typeof allVarietyNames;
|