@bottlebooks/valid-values 10.4.1 → 10.5.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.5.0](https://github.com/bottlebooks/bottlebooks/compare/@bottlebooks/valid-values@10.4.1...@bottlebooks/valid-values@10.5.0) (2023-12-15)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- add Donauveltliner grape variety ([36d2bc4](https://github.com/bottlebooks/bottlebooks/commit/36d2bc49683758dc9dbb67cf26dba7729ff42055))
|
|
11
|
+
|
|
6
12
|
## [10.4.1](https://github.com/bottlebooks/bottlebooks/compare/@bottlebooks/valid-values@10.4.0...@bottlebooks/valid-values@10.4.1) (2023-12-12)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
|
@@ -1982,6 +1982,7 @@ declare const allVarietyNames: {
|
|
|
1982
1982
|
readonly Forcada: VarietyName;
|
|
1983
1983
|
readonly Pieren: VarietyName;
|
|
1984
1984
|
readonly 'Tinta Grossa': VarietyName;
|
|
1985
|
+
readonly Donauveltliner: VarietyName;
|
|
1985
1986
|
};
|
|
1986
1987
|
export declare type VarietyNameKey = keyof typeof allVarietyNames;
|
|
1987
1988
|
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":"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"}
|
|
@@ -7928,6 +7928,10 @@ var allVarietyNames = {
|
|
|
7928
7928
|
'Tinta Grossa': varietyName({
|
|
7929
7929
|
key: 'Tinta Grossa',
|
|
7930
7930
|
label: 'Tinta Grossa'
|
|
7931
|
+
}),
|
|
7932
|
+
Donauveltliner: varietyName({
|
|
7933
|
+
key: 'Donauveltliner',
|
|
7934
|
+
label: 'Donauveltliner'
|
|
7931
7935
|
})
|
|
7932
7936
|
};
|
|
7933
7937
|
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.5.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": "ee84e3a1a17b35ed2aada232346887bee091e014"
|
|
38
38
|
}
|
|
@@ -7926,6 +7926,10 @@ const allVarietyNames = {
|
|
|
7926
7926
|
key: 'Tinta Grossa',
|
|
7927
7927
|
label: 'Tinta Grossa',
|
|
7928
7928
|
}),
|
|
7929
|
+
Donauveltliner: varietyName({
|
|
7930
|
+
key: 'Donauveltliner',
|
|
7931
|
+
label: 'Donauveltliner',
|
|
7932
|
+
}),
|
|
7929
7933
|
} as const;
|
|
7930
7934
|
|
|
7931
7935
|
export type VarietyNameKey = keyof typeof allVarietyNames;
|