@twin.org/standards-w3c-vcard 0.0.3-next.10 → 0.0.3-next.11
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.
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
7
7
|
export const VCardContexts = {
|
|
8
8
|
/**
|
|
9
|
-
* The
|
|
9
|
+
* The namespace for VCard.
|
|
10
10
|
* Based on W3C VCard Ontology.
|
|
11
11
|
* @see http://www.w3.org/2006/vcard/ns#
|
|
12
12
|
*/
|
|
13
|
-
|
|
13
|
+
Namespace: "http://www.w3.org/2006/vcard/ns#"
|
|
14
14
|
};
|
|
15
15
|
//# sourceMappingURL=vcardContexts.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vcardContexts.js","sourceRoot":"","sources":["../../../src/models/vcardContexts.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AAEvC;;GAEG;AACH,gEAAgE;AAChE,MAAM,CAAC,MAAM,aAAa,GAAG;IAC5B;;;;OAIG;IACH,
|
|
1
|
+
{"version":3,"file":"vcardContexts.js","sourceRoot":"","sources":["../../../src/models/vcardContexts.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AAEvC;;GAEG;AACH,gEAAgE;AAChE,MAAM,CAAC,MAAM,aAAa,GAAG;IAC5B;;;;OAIG;IACH,SAAS,EAAE,kCAAkC;CACpC,CAAC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\n\n/**\n * The contexts for VCard.\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention\nexport const VCardContexts = {\n\t/**\n\t * The namespace for VCard.\n\t * Based on W3C VCard Ontology.\n\t * @see http://www.w3.org/2006/vcard/ns#\n\t */\n\tNamespace: \"http://www.w3.org/2006/vcard/ns#\"\n} as const;\n\n/**\n * The contexts for VCard.\n */\nexport type VCardContexts = (typeof VCardContexts)[keyof typeof VCardContexts];\n"]}
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export declare const VCardContexts: {
|
|
5
5
|
/**
|
|
6
|
-
* The
|
|
6
|
+
* The namespace for VCard.
|
|
7
7
|
* Based on W3C VCard Ontology.
|
|
8
8
|
* @see http://www.w3.org/2006/vcard/ns#
|
|
9
9
|
*/
|
|
10
|
-
readonly
|
|
10
|
+
readonly Namespace: "http://www.w3.org/2006/vcard/ns#";
|
|
11
11
|
};
|
|
12
12
|
/**
|
|
13
13
|
* The contexts for VCard.
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @twin.org/standards-w3c-vcard - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.11](https://github.com/twinfoundation/standards/compare/standards-w3c-vcard-v0.0.3-next.10...standards-w3c-vcard-v0.0.3-next.11) (2026-01-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* improved namespaces and contexts ([#102](https://github.com/twinfoundation/standards/issues/102)) ([c74c370](https://github.com/twinfoundation/standards/commit/c74c370cd8145d6166ca4454353f3774c302ac3b))
|
|
9
|
+
|
|
3
10
|
## [0.0.3-next.10](https://github.com/twinfoundation/standards/compare/standards-w3c-vcard-v0.0.3-next.9...standards-w3c-vcard-v0.0.3-next.10) (2026-01-13)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -6,11 +6,11 @@ The contexts for VCard.
|
|
|
6
6
|
|
|
7
7
|
## Type Declaration
|
|
8
8
|
|
|
9
|
-
###
|
|
9
|
+
### Namespace
|
|
10
10
|
|
|
11
|
-
> `readonly` **
|
|
11
|
+
> `readonly` **Namespace**: `"http://www.w3.org/2006/vcard/ns#"` = `"http://www.w3.org/2006/vcard/ns#"`
|
|
12
12
|
|
|
13
|
-
The
|
|
13
|
+
The namespace for VCard.
|
|
14
14
|
Based on W3C VCard Ontology.
|
|
15
15
|
|
|
16
16
|
#### See
|