@kopexa/theme 17.15.0 → 17.16.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.
@@ -0,0 +1,19 @@
1
+ // src/components/prompt-input.ts
2
+ import { tv } from "tailwind-variants";
3
+ var promptInput = tv({
4
+ slots: {
5
+ root: "flex w-full flex-col gap-2",
6
+ form: "relative flex w-full items-end gap-2 rounded-lg border bg-background p-2 focus-within:ring-2 focus-within:ring-ring focus-within:ring-offset-2",
7
+ textarea: [
8
+ "flex-1 resize-none bg-transparent text-sm placeholder:text-muted-foreground",
9
+ "focus:outline-none",
10
+ "min-h-[40px] max-h-[200px]"
11
+ ],
12
+ actions: "flex items-center gap-1",
13
+ submitButton: "flex-shrink-0"
14
+ }
15
+ });
16
+
17
+ export {
18
+ promptInput
19
+ };
@@ -0,0 +1,21 @@
1
+ // src/components/conversation.ts
2
+ import { tv } from "tailwind-variants";
3
+ var conversation = tv({
4
+ slots: {
5
+ root: [
6
+ "relative flex-1 min-h-0",
7
+ // StickToBottom internal container needs overflow
8
+ "[&>div]:overflow-y-auto"
9
+ ],
10
+ content: "flex flex-col gap-8 p-4",
11
+ emptyState: "flex size-full flex-col items-center justify-center gap-3 p-8 text-center",
12
+ emptyStateIcon: "text-muted-foreground",
13
+ emptyStateTitle: "font-medium text-sm",
14
+ emptyStateDescription: "text-muted-foreground text-sm",
15
+ scrollButton: "absolute bottom-4 left-[50%] translate-x-[-50%] rounded-full dark:bg-background dark:hover:bg-muted"
16
+ }
17
+ });
18
+
19
+ export {
20
+ conversation
21
+ };
@@ -0,0 +1,146 @@
1
+ import {
2
+ focusVisibleClasses
3
+ } from "./chunk-6IZPAS4O.mjs";
4
+
5
+ // src/components/filter.ts
6
+ import { tv } from "tailwind-variants";
7
+ var filter = tv({
8
+ slots: {
9
+ root: "flex flex-wrap items-center gap-2",
10
+ // Trigger Button
11
+ trigger: [
12
+ "inline-flex items-center gap-2 rounded-full",
13
+ "border border-dashed border-input text-sm",
14
+ "hover:bg-accent hover:text-accent-foreground",
15
+ "transition-colors cursor-pointer",
16
+ ...focusVisibleClasses
17
+ ],
18
+ triggerIcon: "size-4 opacity-60",
19
+ // Feld-Auswahl Menü
20
+ menu: [
21
+ "bg-popover text-popover-foreground border rounded-lg shadow-lg p-1 min-w-[220px]",
22
+ "data-[open]:animate-in data-[closed]:animate-out",
23
+ "data-[closed]:fade-out-0 data-[open]:fade-in-0",
24
+ "data-[closed]:zoom-out-95 data-[open]:zoom-in-95"
25
+ ],
26
+ menuGroup: "py-1",
27
+ menuGroupLabel: "px-2 py-1.5 text-xs font-medium text-muted-foreground uppercase tracking-wide",
28
+ menuItem: [
29
+ "flex items-center gap-2 px-2 py-1.5 rounded-sm text-sm cursor-pointer",
30
+ "outline-none select-none",
31
+ "data-highlighted:bg-accent data-highlighted:text-accent-foreground",
32
+ "data-disabled:opacity-50 data-disabled:pointer-events-none"
33
+ ],
34
+ menuItemIcon: "size-4 text-muted-foreground",
35
+ menuSeparator: "bg-border -mx-1 my-1 h-px",
36
+ // Aktiver Filter (Contentful-Style segmented)
37
+ field: [
38
+ "group inline-flex items-center rounded-full",
39
+ "border border-border bg-background",
40
+ "transition-all hover:shadow-sm focus-within:ring-2 focus-within:ring-ring focus-within:ring-offset-1"
41
+ ],
42
+ fieldLabel: [
43
+ "bg-muted text-foreground font-medium text-xs",
44
+ "flex items-center gap-1.5 flex-shrink-0"
45
+ ],
46
+ fieldOperator: [
47
+ "bg-primary text-primary-foreground",
48
+ "flex items-center",
49
+ "rounded-full shadow-sm",
50
+ "mx-1 my-0.5"
51
+ ],
52
+ // Native select inside operator segment
53
+ fieldOperatorSelect: [
54
+ "appearance-none bg-transparent font-normal cursor-pointer",
55
+ "border-none outline-none text-xs",
56
+ "focus:outline-none"
57
+ ],
58
+ fieldOperatorIcon: "size-3 opacity-70 ml-0.5 pointer-events-none",
59
+ fieldValue: [
60
+ "bg-background text-foreground text-xs",
61
+ "flex items-center gap-1"
62
+ ],
63
+ // Native input inside value segment (width set dynamically via style)
64
+ fieldValueInput: [
65
+ "bg-transparent border-none outline-none",
66
+ "placeholder:text-muted-foreground"
67
+ ],
68
+ fieldValueText: "truncate",
69
+ fieldValueIcon: "size-3.5 opacity-60 flex-shrink-0",
70
+ fieldRemove: [
71
+ "size-5 rounded-full flex items-center justify-center flex-shrink-0",
72
+ "hover:bg-destructive/10 hover:text-destructive",
73
+ "transition-colors cursor-pointer",
74
+ "mr-1",
75
+ ...focusVisibleClasses
76
+ ],
77
+ // Wert-Editor Popover (for select/multiselect types)
78
+ editor: [
79
+ "bg-popover text-popover-foreground border rounded-lg shadow-lg p-3 min-w-[280px]",
80
+ "data-[open]:animate-in data-[closed]:animate-out",
81
+ "data-[closed]:fade-out-0 data-[open]:fade-in-0",
82
+ "data-[closed]:zoom-out-95 data-[open]:zoom-in-95"
83
+ ],
84
+ editorHeader: "flex items-center justify-between mb-3",
85
+ editorTitle: "text-sm font-medium",
86
+ editorOperator: "w-full mb-3",
87
+ editorInput: "w-full",
88
+ // Active Filters Container
89
+ active: "flex flex-wrap items-center gap-2",
90
+ // Clear All Button
91
+ clearAll: [
92
+ "text-xs text-muted-foreground hover:text-foreground",
93
+ "cursor-pointer transition-colors underline-offset-2 hover:underline"
94
+ ]
95
+ },
96
+ variants: {
97
+ size: {
98
+ sm: {
99
+ trigger: "h-7 text-xs px-2.5",
100
+ field: "text-xs h-7",
101
+ fieldLabel: "px-2.5 py-1",
102
+ fieldOperator: "px-2.5 py-0.5",
103
+ fieldOperatorSelect: "text-xs",
104
+ fieldValue: "px-2 py-1",
105
+ fieldValueInput: "text-xs h-5",
106
+ fieldRemove: "size-4"
107
+ },
108
+ md: {
109
+ trigger: "h-8 px-3",
110
+ field: "text-sm h-8",
111
+ fieldLabel: "px-3 py-1.5",
112
+ fieldOperator: "px-3 py-1",
113
+ fieldOperatorSelect: "text-sm",
114
+ fieldValue: "px-2.5 py-1.5",
115
+ fieldValueInput: "text-sm h-5",
116
+ fieldRemove: "size-5"
117
+ },
118
+ lg: {
119
+ trigger: "h-9 px-4 text-base",
120
+ field: "text-base h-9",
121
+ fieldLabel: "px-4 py-2",
122
+ fieldOperator: "px-4 py-1.5",
123
+ fieldOperatorSelect: "text-base",
124
+ fieldValue: "px-3 py-2",
125
+ fieldValueInput: "text-base h-6",
126
+ fieldRemove: "size-6"
127
+ }
128
+ },
129
+ variant: {
130
+ outline: {
131
+ field: "border-input"
132
+ },
133
+ solid: {
134
+ field: "border-transparent shadow-sm"
135
+ }
136
+ }
137
+ },
138
+ defaultVariants: {
139
+ size: "md",
140
+ variant: "solid"
141
+ }
142
+ });
143
+
144
+ export {
145
+ filter
146
+ };
@@ -0,0 +1,41 @@
1
+ // src/components/message.ts
2
+ import { tv } from "tailwind-variants";
3
+ var message = tv({
4
+ slots: {
5
+ root: "group flex w-full max-w-[95%] flex-col gap-2",
6
+ content: [
7
+ "flex w-fit min-w-0 max-w-full flex-col gap-2 overflow-hidden text-sm",
8
+ // Assistant styles (default)
9
+ "group-[.is-assistant]:text-foreground",
10
+ // User styles
11
+ "group-[.is-user]:ml-auto group-[.is-user]:rounded-lg group-[.is-user]:bg-muted group-[.is-user]:px-4 group-[.is-user]:py-3 group-[.is-user]:text-foreground"
12
+ ],
13
+ actions: "flex items-center gap-1",
14
+ toolbar: "mt-4 flex w-full items-center justify-between gap-4",
15
+ // Branch components
16
+ branchRoot: "grid w-full gap-2 [&>div]:pb-0",
17
+ branchContent: "grid gap-2 overflow-hidden [&>div]:pb-0",
18
+ branchSelector: "flex items-center",
19
+ branchPage: "px-2 text-muted-foreground text-xs tabular-nums"
20
+ },
21
+ variants: {
22
+ from: {
23
+ user: {
24
+ root: "is-user ml-auto justify-end"
25
+ },
26
+ assistant: {
27
+ root: "is-assistant"
28
+ },
29
+ system: {
30
+ root: "is-system"
31
+ }
32
+ }
33
+ },
34
+ defaultVariants: {
35
+ from: "assistant"
36
+ }
37
+ });
38
+
39
+ export {
40
+ message
41
+ };
@@ -0,0 +1,69 @@
1
+ import * as tailwind_variants from 'tailwind-variants';
2
+ import { VariantProps } from 'tailwind-variants';
3
+ import * as tailwind_merge from 'tailwind-merge';
4
+
5
+ declare const conversation: tailwind_variants.TVReturnType<{
6
+ [key: string]: {
7
+ [key: string]: tailwind_merge.ClassNameValue | {
8
+ root?: tailwind_merge.ClassNameValue;
9
+ content?: tailwind_merge.ClassNameValue;
10
+ emptyState?: tailwind_merge.ClassNameValue;
11
+ emptyStateIcon?: tailwind_merge.ClassNameValue;
12
+ emptyStateTitle?: tailwind_merge.ClassNameValue;
13
+ emptyStateDescription?: tailwind_merge.ClassNameValue;
14
+ scrollButton?: tailwind_merge.ClassNameValue;
15
+ };
16
+ };
17
+ } | {
18
+ [x: string]: {
19
+ [x: string]: tailwind_merge.ClassNameValue | {
20
+ root?: tailwind_merge.ClassNameValue;
21
+ content?: tailwind_merge.ClassNameValue;
22
+ emptyState?: tailwind_merge.ClassNameValue;
23
+ emptyStateIcon?: tailwind_merge.ClassNameValue;
24
+ emptyStateTitle?: tailwind_merge.ClassNameValue;
25
+ emptyStateDescription?: tailwind_merge.ClassNameValue;
26
+ scrollButton?: tailwind_merge.ClassNameValue;
27
+ };
28
+ };
29
+ } | {}, {
30
+ root: string[];
31
+ content: string;
32
+ emptyState: string;
33
+ emptyStateIcon: string;
34
+ emptyStateTitle: string;
35
+ emptyStateDescription: string;
36
+ scrollButton: string;
37
+ }, undefined, {
38
+ [key: string]: {
39
+ [key: string]: tailwind_merge.ClassNameValue | {
40
+ root?: tailwind_merge.ClassNameValue;
41
+ content?: tailwind_merge.ClassNameValue;
42
+ emptyState?: tailwind_merge.ClassNameValue;
43
+ emptyStateIcon?: tailwind_merge.ClassNameValue;
44
+ emptyStateTitle?: tailwind_merge.ClassNameValue;
45
+ emptyStateDescription?: tailwind_merge.ClassNameValue;
46
+ scrollButton?: tailwind_merge.ClassNameValue;
47
+ };
48
+ };
49
+ } | {}, {
50
+ root: string[];
51
+ content: string;
52
+ emptyState: string;
53
+ emptyStateIcon: string;
54
+ emptyStateTitle: string;
55
+ emptyStateDescription: string;
56
+ scrollButton: string;
57
+ }, tailwind_variants.TVReturnType<unknown, {
58
+ root: string[];
59
+ content: string;
60
+ emptyState: string;
61
+ emptyStateIcon: string;
62
+ emptyStateTitle: string;
63
+ emptyStateDescription: string;
64
+ scrollButton: string;
65
+ }, undefined, unknown, unknown, undefined>>;
66
+ type ConversationVariantProps = VariantProps<typeof conversation>;
67
+ type ConversationSlots = keyof ReturnType<typeof conversation>;
68
+
69
+ export { type ConversationSlots, type ConversationVariantProps, conversation };
@@ -0,0 +1,69 @@
1
+ import * as tailwind_variants from 'tailwind-variants';
2
+ import { VariantProps } from 'tailwind-variants';
3
+ import * as tailwind_merge from 'tailwind-merge';
4
+
5
+ declare const conversation: tailwind_variants.TVReturnType<{
6
+ [key: string]: {
7
+ [key: string]: tailwind_merge.ClassNameValue | {
8
+ root?: tailwind_merge.ClassNameValue;
9
+ content?: tailwind_merge.ClassNameValue;
10
+ emptyState?: tailwind_merge.ClassNameValue;
11
+ emptyStateIcon?: tailwind_merge.ClassNameValue;
12
+ emptyStateTitle?: tailwind_merge.ClassNameValue;
13
+ emptyStateDescription?: tailwind_merge.ClassNameValue;
14
+ scrollButton?: tailwind_merge.ClassNameValue;
15
+ };
16
+ };
17
+ } | {
18
+ [x: string]: {
19
+ [x: string]: tailwind_merge.ClassNameValue | {
20
+ root?: tailwind_merge.ClassNameValue;
21
+ content?: tailwind_merge.ClassNameValue;
22
+ emptyState?: tailwind_merge.ClassNameValue;
23
+ emptyStateIcon?: tailwind_merge.ClassNameValue;
24
+ emptyStateTitle?: tailwind_merge.ClassNameValue;
25
+ emptyStateDescription?: tailwind_merge.ClassNameValue;
26
+ scrollButton?: tailwind_merge.ClassNameValue;
27
+ };
28
+ };
29
+ } | {}, {
30
+ root: string[];
31
+ content: string;
32
+ emptyState: string;
33
+ emptyStateIcon: string;
34
+ emptyStateTitle: string;
35
+ emptyStateDescription: string;
36
+ scrollButton: string;
37
+ }, undefined, {
38
+ [key: string]: {
39
+ [key: string]: tailwind_merge.ClassNameValue | {
40
+ root?: tailwind_merge.ClassNameValue;
41
+ content?: tailwind_merge.ClassNameValue;
42
+ emptyState?: tailwind_merge.ClassNameValue;
43
+ emptyStateIcon?: tailwind_merge.ClassNameValue;
44
+ emptyStateTitle?: tailwind_merge.ClassNameValue;
45
+ emptyStateDescription?: tailwind_merge.ClassNameValue;
46
+ scrollButton?: tailwind_merge.ClassNameValue;
47
+ };
48
+ };
49
+ } | {}, {
50
+ root: string[];
51
+ content: string;
52
+ emptyState: string;
53
+ emptyStateIcon: string;
54
+ emptyStateTitle: string;
55
+ emptyStateDescription: string;
56
+ scrollButton: string;
57
+ }, tailwind_variants.TVReturnType<unknown, {
58
+ root: string[];
59
+ content: string;
60
+ emptyState: string;
61
+ emptyStateIcon: string;
62
+ emptyStateTitle: string;
63
+ emptyStateDescription: string;
64
+ scrollButton: string;
65
+ }, undefined, unknown, unknown, undefined>>;
66
+ type ConversationVariantProps = VariantProps<typeof conversation>;
67
+ type ConversationSlots = keyof ReturnType<typeof conversation>;
68
+
69
+ export { type ConversationSlots, type ConversationVariantProps, conversation };
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/components/conversation.ts
21
+ var conversation_exports = {};
22
+ __export(conversation_exports, {
23
+ conversation: () => conversation
24
+ });
25
+ module.exports = __toCommonJS(conversation_exports);
26
+ var import_tailwind_variants = require("tailwind-variants");
27
+ var conversation = (0, import_tailwind_variants.tv)({
28
+ slots: {
29
+ root: [
30
+ "relative flex-1 min-h-0",
31
+ // StickToBottom internal container needs overflow
32
+ "[&>div]:overflow-y-auto"
33
+ ],
34
+ content: "flex flex-col gap-8 p-4",
35
+ emptyState: "flex size-full flex-col items-center justify-center gap-3 p-8 text-center",
36
+ emptyStateIcon: "text-muted-foreground",
37
+ emptyStateTitle: "font-medium text-sm",
38
+ emptyStateDescription: "text-muted-foreground text-sm",
39
+ scrollButton: "absolute bottom-4 left-[50%] translate-x-[-50%] rounded-full dark:bg-background dark:hover:bg-muted"
40
+ }
41
+ });
42
+ // Annotate the CommonJS export names for ESM import in node:
43
+ 0 && (module.exports = {
44
+ conversation
45
+ });
@@ -0,0 +1,6 @@
1
+ import {
2
+ conversation
3
+ } from "../chunk-JT6SHEZ6.mjs";
4
+ export {
5
+ conversation
6
+ };
@@ -6,15 +6,31 @@ declare const filter: tailwind_variants.TVReturnType<{
6
6
  sm: {
7
7
  trigger: string;
8
8
  field: string;
9
+ fieldLabel: string;
10
+ fieldOperator: string;
11
+ fieldOperatorSelect: string;
12
+ fieldValue: string;
13
+ fieldValueInput: string;
9
14
  fieldRemove: string;
10
15
  };
11
16
  md: {
12
17
  trigger: string;
13
18
  field: string;
19
+ fieldLabel: string;
20
+ fieldOperator: string;
21
+ fieldOperatorSelect: string;
22
+ fieldValue: string;
23
+ fieldValueInput: string;
24
+ fieldRemove: string;
14
25
  };
15
26
  lg: {
16
27
  trigger: string;
17
28
  field: string;
29
+ fieldLabel: string;
30
+ fieldOperator: string;
31
+ fieldOperatorSelect: string;
32
+ fieldValue: string;
33
+ fieldValueInput: string;
18
34
  fieldRemove: string;
19
35
  };
20
36
  };
@@ -22,7 +38,9 @@ declare const filter: tailwind_variants.TVReturnType<{
22
38
  outline: {
23
39
  field: string;
24
40
  };
25
- solid: {};
41
+ solid: {
42
+ field: string;
43
+ };
26
44
  };
27
45
  }, {
28
46
  root: string;
@@ -35,9 +53,14 @@ declare const filter: tailwind_variants.TVReturnType<{
35
53
  menuItemIcon: string;
36
54
  menuSeparator: string;
37
55
  field: string[];
38
- fieldLabel: string;
39
- fieldOperator: string;
40
- fieldValue: string;
56
+ fieldLabel: string[];
57
+ fieldOperator: string[];
58
+ fieldOperatorSelect: string[];
59
+ fieldOperatorIcon: string;
60
+ fieldValue: string[];
61
+ fieldValueInput: string[];
62
+ fieldValueText: string;
63
+ fieldValueIcon: string;
41
64
  fieldRemove: string[];
42
65
  editor: string[];
43
66
  editorHeader: string;
@@ -51,15 +74,31 @@ declare const filter: tailwind_variants.TVReturnType<{
51
74
  sm: {
52
75
  trigger: string;
53
76
  field: string;
77
+ fieldLabel: string;
78
+ fieldOperator: string;
79
+ fieldOperatorSelect: string;
80
+ fieldValue: string;
81
+ fieldValueInput: string;
54
82
  fieldRemove: string;
55
83
  };
56
84
  md: {
57
85
  trigger: string;
58
86
  field: string;
87
+ fieldLabel: string;
88
+ fieldOperator: string;
89
+ fieldOperatorSelect: string;
90
+ fieldValue: string;
91
+ fieldValueInput: string;
92
+ fieldRemove: string;
59
93
  };
60
94
  lg: {
61
95
  trigger: string;
62
96
  field: string;
97
+ fieldLabel: string;
98
+ fieldOperator: string;
99
+ fieldOperatorSelect: string;
100
+ fieldValue: string;
101
+ fieldValueInput: string;
63
102
  fieldRemove: string;
64
103
  };
65
104
  };
@@ -67,7 +106,9 @@ declare const filter: tailwind_variants.TVReturnType<{
67
106
  outline: {
68
107
  field: string;
69
108
  };
70
- solid: {};
109
+ solid: {
110
+ field: string;
111
+ };
71
112
  };
72
113
  }, {
73
114
  root: string;
@@ -80,9 +121,14 @@ declare const filter: tailwind_variants.TVReturnType<{
80
121
  menuItemIcon: string;
81
122
  menuSeparator: string;
82
123
  field: string[];
83
- fieldLabel: string;
84
- fieldOperator: string;
85
- fieldValue: string;
124
+ fieldLabel: string[];
125
+ fieldOperator: string[];
126
+ fieldOperatorSelect: string[];
127
+ fieldOperatorIcon: string;
128
+ fieldValue: string[];
129
+ fieldValueInput: string[];
130
+ fieldValueText: string;
131
+ fieldValueIcon: string;
86
132
  fieldRemove: string[];
87
133
  editor: string[];
88
134
  editorHeader: string;
@@ -96,15 +142,31 @@ declare const filter: tailwind_variants.TVReturnType<{
96
142
  sm: {
97
143
  trigger: string;
98
144
  field: string;
145
+ fieldLabel: string;
146
+ fieldOperator: string;
147
+ fieldOperatorSelect: string;
148
+ fieldValue: string;
149
+ fieldValueInput: string;
99
150
  fieldRemove: string;
100
151
  };
101
152
  md: {
102
153
  trigger: string;
103
154
  field: string;
155
+ fieldLabel: string;
156
+ fieldOperator: string;
157
+ fieldOperatorSelect: string;
158
+ fieldValue: string;
159
+ fieldValueInput: string;
160
+ fieldRemove: string;
104
161
  };
105
162
  lg: {
106
163
  trigger: string;
107
164
  field: string;
165
+ fieldLabel: string;
166
+ fieldOperator: string;
167
+ fieldOperatorSelect: string;
168
+ fieldValue: string;
169
+ fieldValueInput: string;
108
170
  fieldRemove: string;
109
171
  };
110
172
  };
@@ -112,7 +174,9 @@ declare const filter: tailwind_variants.TVReturnType<{
112
174
  outline: {
113
175
  field: string;
114
176
  };
115
- solid: {};
177
+ solid: {
178
+ field: string;
179
+ };
116
180
  };
117
181
  }, {
118
182
  root: string;
@@ -125,9 +189,14 @@ declare const filter: tailwind_variants.TVReturnType<{
125
189
  menuItemIcon: string;
126
190
  menuSeparator: string;
127
191
  field: string[];
128
- fieldLabel: string;
129
- fieldOperator: string;
130
- fieldValue: string;
192
+ fieldLabel: string[];
193
+ fieldOperator: string[];
194
+ fieldOperatorSelect: string[];
195
+ fieldOperatorIcon: string;
196
+ fieldValue: string[];
197
+ fieldValueInput: string[];
198
+ fieldValueText: string;
199
+ fieldValueIcon: string;
131
200
  fieldRemove: string[];
132
201
  editor: string[];
133
202
  editorHeader: string;