@chayns-components/core 5.5.36 → 5.5.37
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/lib/cjs/components/copyable-content/CopyableContent.js +12 -11
- package/lib/cjs/components/copyable-content/CopyableContent.js.map +1 -1
- package/lib/cjs/components/copyable-content/CopyableContent.test.js +4 -11
- package/lib/cjs/components/copyable-content/CopyableContent.test.js.map +1 -1
- package/lib/cjs/components/file-list/FileList.js +4 -3
- package/lib/cjs/components/file-list/FileList.js.map +1 -1
- package/lib/cjs/components/file-list/file-item/FileItem.js +6 -7
- package/lib/cjs/components/file-list/file-item/FileItem.js.map +1 -1
- package/lib/cjs/components/filter/filter-content/FilterContent.js +8 -7
- package/lib/cjs/components/filter/filter-content/FilterContent.js.map +1 -1
- package/lib/cjs/components/filter-buttons/FilterButtons.js +5 -3
- package/lib/cjs/components/filter-buttons/FilterButtons.js.map +1 -1
- package/lib/cjs/components/filter-buttons/all-button/AllButton.js +5 -4
- package/lib/cjs/components/filter-buttons/all-button/AllButton.js.map +1 -1
- package/lib/cjs/components/truncation/Truncation.js +8 -7
- package/lib/cjs/components/truncation/Truncation.js.map +1 -1
- package/lib/cjs/components/truncation/Truncation.test.js +4 -5
- package/lib/cjs/components/truncation/Truncation.test.js.map +1 -1
- package/lib/cjs/constants/textStrings.js +29 -29
- package/lib/cjs/constants/textStrings.js.map +1 -1
- package/lib/esm/components/copyable-content/CopyableContent.js +12 -11
- package/lib/esm/components/copyable-content/CopyableContent.js.map +1 -1
- package/lib/esm/components/copyable-content/CopyableContent.test.js +4 -11
- package/lib/esm/components/copyable-content/CopyableContent.test.js.map +1 -1
- package/lib/esm/components/file-list/FileList.js +4 -3
- package/lib/esm/components/file-list/FileList.js.map +1 -1
- package/lib/esm/components/file-list/file-item/FileItem.js +6 -7
- package/lib/esm/components/file-list/file-item/FileItem.js.map +1 -1
- package/lib/esm/components/filter/filter-content/FilterContent.js +8 -7
- package/lib/esm/components/filter/filter-content/FilterContent.js.map +1 -1
- package/lib/esm/components/filter-buttons/FilterButtons.js +5 -3
- package/lib/esm/components/filter-buttons/FilterButtons.js.map +1 -1
- package/lib/esm/components/filter-buttons/all-button/AllButton.js +5 -4
- package/lib/esm/components/filter-buttons/all-button/AllButton.js.map +1 -1
- package/lib/esm/components/truncation/Truncation.js +8 -7
- package/lib/esm/components/truncation/Truncation.js.map +1 -1
- package/lib/esm/components/truncation/Truncation.test.js +4 -5
- package/lib/esm/components/truncation/Truncation.test.js.map +1 -1
- package/lib/esm/constants/textStrings.js +29 -29
- package/lib/esm/constants/textStrings.js.map +1 -1
- package/lib/types/constants/textStrings.d.ts +29 -29
- package/package.json +3 -3
|
@@ -1,59 +1,59 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
readonly components: {
|
|
3
|
+
readonly copyableContent: {
|
|
4
|
+
readonly copy: {
|
|
5
|
+
readonly stringName: "txt_chayns_components_v5_core_components_copyableContent_copy";
|
|
6
|
+
readonly fallback: "Kopieren";
|
|
7
|
+
};
|
|
8
|
+
readonly copyFailed: {
|
|
9
|
+
readonly stringName: "txt_chayns_components_v5_core_components_copyableContent_copyFailed";
|
|
10
|
+
readonly fallback: "Kopieren fehlgeschlagen";
|
|
11
|
+
};
|
|
12
|
+
readonly share: {
|
|
13
|
+
readonly stringName: "txt_chayns_components_v5_core_components_copyableContent_share";
|
|
14
|
+
readonly fallback: "Teilen";
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
readonly fileItem: {
|
|
18
|
+
readonly download: {
|
|
19
|
+
readonly stringName: "txt_chayns_components_v5_core_components_fileItem_download";
|
|
20
|
+
readonly fallback: "Download";
|
|
21
|
+
};
|
|
22
|
+
readonly remove: {
|
|
23
|
+
readonly stringName: "txt_chayns_components_v5_core_components_fileItem_remove";
|
|
24
|
+
readonly fallback: "Entfernen";
|
|
25
|
+
};
|
|
26
|
+
};
|
|
3
27
|
readonly filter: {
|
|
4
28
|
readonly filterContent: {
|
|
5
29
|
readonly input: {
|
|
6
30
|
readonly placeholder: {
|
|
7
|
-
readonly stringName: "
|
|
31
|
+
readonly stringName: "txt_chayns_components_v5_core_components_filter_filterContent_input_placeholder";
|
|
8
32
|
readonly fallback: "Suche";
|
|
9
33
|
};
|
|
10
34
|
};
|
|
11
35
|
readonly sort: {
|
|
12
|
-
readonly stringName: "
|
|
36
|
+
readonly stringName: "txt_chayns_components_v5_core_components_filter_filterContent_sort";
|
|
13
37
|
readonly fallback: "Sortierung";
|
|
14
38
|
};
|
|
15
39
|
};
|
|
16
40
|
};
|
|
17
41
|
readonly filterButtons: {
|
|
18
42
|
readonly all: {
|
|
19
|
-
readonly stringName: "
|
|
43
|
+
readonly stringName: "txt_chayns_components_v5_core_components_filterButtons_all";
|
|
20
44
|
readonly fallback: "Alle";
|
|
21
45
|
};
|
|
22
46
|
};
|
|
23
47
|
readonly truncation: {
|
|
24
48
|
readonly less: {
|
|
25
|
-
readonly stringName: "
|
|
49
|
+
readonly stringName: "txt_chayns_components_v5_core_components_truncation_less";
|
|
26
50
|
readonly fallback: "Weniger";
|
|
27
51
|
};
|
|
28
52
|
readonly more: {
|
|
29
|
-
readonly stringName: "
|
|
53
|
+
readonly stringName: "txt_chayns_components_v5_core_components_truncation_more";
|
|
30
54
|
readonly fallback: "Mehr";
|
|
31
55
|
};
|
|
32
56
|
};
|
|
33
|
-
readonly fileItem: {
|
|
34
|
-
readonly download: {
|
|
35
|
-
readonly stringName: "txt_chayns_components_core_components_fileItem_download";
|
|
36
|
-
readonly fallback: "Download";
|
|
37
|
-
};
|
|
38
|
-
readonly remove: {
|
|
39
|
-
readonly stringName: "txt_chayns_components_core_components_fileItem_remove";
|
|
40
|
-
readonly fallback: "Entfernen";
|
|
41
|
-
};
|
|
42
|
-
};
|
|
43
|
-
readonly copyableContent: {
|
|
44
|
-
readonly copy: {
|
|
45
|
-
readonly stringName: "txt_chayns_components_core_components_copyableContent_copy";
|
|
46
|
-
readonly fallback: "Kopieren";
|
|
47
|
-
};
|
|
48
|
-
readonly share: {
|
|
49
|
-
readonly stringName: "txt_chayns_components_core_components_copyableContent_share";
|
|
50
|
-
readonly fallback: "Teilen";
|
|
51
|
-
};
|
|
52
|
-
readonly copyFailed: {
|
|
53
|
-
readonly stringName: "txt_chayns_components_core_components_copyableContent_copyFailed";
|
|
54
|
-
readonly fallback: "Kopieren fehlgeschlagen";
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
57
|
};
|
|
58
58
|
};
|
|
59
59
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chayns-components/core",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.37",
|
|
4
4
|
"description": "A set of beautiful React components for developing your own applications with chayns.",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"browserslist": [
|
|
@@ -76,8 +76,8 @@
|
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"@chayns-components/format": "^5.5.34",
|
|
79
|
-
"@chayns-components/textstring": "^5.5.34",
|
|
80
79
|
"@chayns/colors": "^2.0.2",
|
|
80
|
+
"@chayns/textstrings": "^1.0.1",
|
|
81
81
|
"@chayns/uac-service": "~0.0.62",
|
|
82
82
|
"clsx": "^2.1.1",
|
|
83
83
|
"react-compiler-runtime": "^1.0.0",
|
|
@@ -93,5 +93,5 @@
|
|
|
93
93
|
"publishConfig": {
|
|
94
94
|
"access": "public"
|
|
95
95
|
},
|
|
96
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "d54ff7f9ff20ebb76f33a5539cbb610b107a0cc7"
|
|
97
97
|
}
|