@ogc-maps/storybook-components 0.6.0 → 0.6.1

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.
Files changed (40) hide show
  1. package/dist/Legend-B6uIqOSw.js +239 -0
  2. package/dist/components/LayerEditor/LayerEditor.d.ts.map +1 -1
  3. package/dist/components/Legend/Legend.d.ts +2 -1
  4. package/dist/components/Legend/Legend.d.ts.map +1 -1
  5. package/dist/components/Legend/index.js +1 -1
  6. package/dist/components/LegendEditor/LegendEditor.d.ts +3 -2
  7. package/dist/components/LegendEditor/LegendEditor.d.ts.map +1 -1
  8. package/dist/components/StyleEditor/DataDrivenColorEditor.d.ts +9 -0
  9. package/dist/components/StyleEditor/DataDrivenColorEditor.d.ts.map +1 -0
  10. package/dist/components/StyleEditor/PropertyField.d.ts +4 -1
  11. package/dist/components/StyleEditor/PropertyField.d.ts.map +1 -1
  12. package/dist/components/StyleEditor/PropertyGroup.d.ts +4 -1
  13. package/dist/components/StyleEditor/PropertyGroup.d.ts.map +1 -1
  14. package/dist/components/StyleEditor/StyleEditor.d.ts +5 -2
  15. package/dist/components/StyleEditor/StyleEditor.d.ts.map +1 -1
  16. package/dist/components/StyleEditor/StylePreview.d.ts.map +1 -1
  17. package/dist/components/StyleEditor/index.d.ts +2 -0
  18. package/dist/components/StyleEditor/index.d.ts.map +1 -1
  19. package/dist/components/UIConfigEditor/UIConfigEditor.d.ts.map +1 -1
  20. package/dist/components/index.d.ts +1 -1
  21. package/dist/components/index.d.ts.map +1 -1
  22. package/dist/{index-B2DIcC-4.js → index-B4i0zJXf.js} +330 -326
  23. package/dist/main.js +1803 -1242
  24. package/dist/schemas/config.d.ts +353 -288
  25. package/dist/schemas/config.d.ts.map +1 -1
  26. package/dist/schemas/index.js +1 -1
  27. package/dist/style.css +1 -1
  28. package/dist/types/index.js +1 -1
  29. package/dist/utils/__tests__/expressionColors.test.d.ts +2 -0
  30. package/dist/utils/__tests__/expressionColors.test.d.ts.map +1 -0
  31. package/dist/utils/colorPalettes.d.ts +5 -0
  32. package/dist/utils/colorPalettes.d.ts.map +1 -0
  33. package/dist/utils/expressionColors.d.ts +20 -0
  34. package/dist/utils/expressionColors.d.ts.map +1 -0
  35. package/dist/utils/index.d.ts +2 -0
  36. package/dist/utils/index.d.ts.map +1 -1
  37. package/dist/utils/queryableHelpers.d.ts +17 -0
  38. package/dist/utils/queryableHelpers.d.ts.map +1 -1
  39. package/package.json +1 -1
  40. package/dist/Legend-TTWWpWDT.js +0 -97
@@ -0,0 +1,239 @@
1
+ import { jsxs as p, jsx as a } from "react/jsx-runtime";
2
+ import { useState as f } from "react";
3
+ import { BsArrowsAngleContract as N, BsArrowsAngleExpand as y } from "react-icons/bs";
4
+ const w = {
5
+ fill: "fill-opacity",
6
+ line: "line-opacity",
7
+ circle: "circle-opacity",
8
+ symbol: "icon-opacity"
9
+ };
10
+ function v(i) {
11
+ var n;
12
+ const m = i.style;
13
+ if (!m) return 1;
14
+ const e = w[m.type];
15
+ if (!e) return 1;
16
+ const u = (n = m.paint) == null ? void 0 : n[e];
17
+ return typeof u == "number" ? u : 1;
18
+ }
19
+ function g({ color: i, shape: m }) {
20
+ const e = m ?? "square";
21
+ return e === "circle" ? /* @__PURE__ */ a(
22
+ "span",
23
+ {
24
+ className: "mapui:inline-block mapui:h-3 mapui:w-3 mapui:rounded-full mapui:shrink-0",
25
+ style: { backgroundColor: i }
26
+ }
27
+ ) : e === "line" ? /* @__PURE__ */ a(
28
+ "span",
29
+ {
30
+ className: "mapui:inline-block mapui:h-0.5 mapui:w-4 mapui:rounded-full mapui:shrink-0",
31
+ style: { backgroundColor: i }
32
+ }
33
+ ) : /* @__PURE__ */ a(
34
+ "span",
35
+ {
36
+ className: "mapui:inline-block mapui:h-3 mapui:w-3 mapui:rounded-sm mapui:shrink-0",
37
+ style: { backgroundColor: i }
38
+ }
39
+ );
40
+ }
41
+ function k(i) {
42
+ return `linear-gradient(to right, ${i.map((m, e) => `${m.color} ${e / i.length * 100}% ${(e + 1) / i.length * 100}%`).join(", ")})`;
43
+ }
44
+ function $(i) {
45
+ return `linear-gradient(to right, ${i.map((m) => m.color).join(", ")})`;
46
+ }
47
+ function C({ legend: i, label: m }) {
48
+ const { entries: e } = i;
49
+ return e.length === 1 ? /* @__PURE__ */ p("div", { className: "mapui:flex mapui:items-center mapui:gap-2 mapui:min-w-0", children: [
50
+ /* @__PURE__ */ a(g, { color: e[0].color, shape: e[0].shape }),
51
+ /* @__PURE__ */ a("span", { className: "mapui:text-gray-700 mapui:truncate", children: e[0].label || m })
52
+ ] }) : /* @__PURE__ */ p("div", { children: [
53
+ /* @__PURE__ */ a("div", { className: "mapui:mb-1 mapui:text-xs mapui:font-medium mapui:text-gray-600", children: m }),
54
+ /* @__PURE__ */ a("ul", { className: "mapui:m-0 mapui:list-none mapui:space-y-1 mapui:p-0 mapui:pl-1", children: e.map((u, n) => /* @__PURE__ */ p(
55
+ "li",
56
+ {
57
+ className: "mapui:flex mapui:items-center mapui:gap-2 mapui:min-w-0",
58
+ children: [
59
+ /* @__PURE__ */ a(g, { color: u.color, shape: u.shape }),
60
+ /* @__PURE__ */ a("span", { className: "mapui:text-gray-700 mapui:truncate", children: u.label })
61
+ ]
62
+ },
63
+ `${u.label}-${n}`
64
+ )) })
65
+ ] });
66
+ }
67
+ function L({
68
+ legend: i,
69
+ label: m,
70
+ expanded: e,
71
+ onToggle: u
72
+ }) {
73
+ var l, d;
74
+ const { entries: n, showLabelsCollapsed: r } = i;
75
+ return /* @__PURE__ */ p("div", { children: [
76
+ /* @__PURE__ */ p(
77
+ "button",
78
+ {
79
+ type: "button",
80
+ className: "mapui:flex mapui:items-center mapui:gap-1 mapui:bg-transparent mapui:border-none mapui:p-0 mapui:cursor-pointer mapui:text-left mapui:text-gray-700 mapui:text-sm mapui:font-medium",
81
+ onClick: u,
82
+ "aria-expanded": e,
83
+ children: [
84
+ /* @__PURE__ */ a("span", { className: "mapui:text-xs mapui:text-gray-400", children: e ? "▾" : "▸" }),
85
+ /* @__PURE__ */ a("span", { className: "mapui:truncate", children: m })
86
+ ]
87
+ }
88
+ ),
89
+ /* @__PURE__ */ p("div", { className: "mapui:mt-1 mapui:ml-4", children: [
90
+ /* @__PURE__ */ a(
91
+ "div",
92
+ {
93
+ className: "mapui:h-3 mapui:min-w-12 mapui:max-w-32 mapui:rounded-sm",
94
+ style: { background: k(n) }
95
+ }
96
+ ),
97
+ r && !e && /* @__PURE__ */ p("div", { className: "mapui:mt-1 mapui:flex mapui:justify-between mapui:text-[10px] mapui:text-gray-500 mapui:max-w-32", children: [
98
+ /* @__PURE__ */ a("span", { className: "mapui:truncate", children: (l = n[0]) == null ? void 0 : l.label }),
99
+ n.length > 1 && /* @__PURE__ */ a("span", { className: "mapui:truncate", children: (d = n[n.length - 1]) == null ? void 0 : d.label })
100
+ ] })
101
+ ] }),
102
+ e && /* @__PURE__ */ a("ul", { className: "mapui:m-0 mapui:mt-1 mapui:ml-4 mapui:list-none mapui:space-y-1 mapui:p-0 mapui:max-h-48 mapui:overflow-y-auto", children: n.map((c, h) => /* @__PURE__ */ p(
103
+ "li",
104
+ {
105
+ className: "mapui:flex mapui:items-center mapui:gap-2 mapui:min-w-0",
106
+ children: [
107
+ /* @__PURE__ */ a(g, { color: c.color, shape: c.shape }),
108
+ /* @__PURE__ */ a("span", { className: "mapui:text-gray-700 mapui:truncate mapui:text-xs", children: c.label })
109
+ ]
110
+ },
111
+ `${c.label}-${h}`
112
+ )) })
113
+ ] });
114
+ }
115
+ function E({
116
+ legend: i,
117
+ label: m,
118
+ expanded: e,
119
+ onToggle: u
120
+ }) {
121
+ const { entries: n, gradientProperty: r } = i;
122
+ return /* @__PURE__ */ p("div", { children: [
123
+ /* @__PURE__ */ p(
124
+ "button",
125
+ {
126
+ type: "button",
127
+ className: "mapui:flex mapui:items-center mapui:gap-1 mapui:bg-transparent mapui:border-none mapui:p-0 mapui:cursor-pointer mapui:text-left mapui:text-gray-700 mapui:text-sm mapui:font-medium",
128
+ onClick: u,
129
+ "aria-expanded": e,
130
+ children: [
131
+ /* @__PURE__ */ a("span", { className: "mapui:text-xs mapui:text-gray-400", children: e ? "▾" : "▸" }),
132
+ /* @__PURE__ */ a("span", { className: "mapui:truncate", children: m })
133
+ ]
134
+ }
135
+ ),
136
+ /* @__PURE__ */ a("div", { className: "mapui:mt-1 mapui:ml-4", children: /* @__PURE__ */ a(
137
+ "div",
138
+ {
139
+ className: "mapui:h-3 mapui:min-w-12 mapui:max-w-32 mapui:rounded-sm",
140
+ style: { background: $(n) }
141
+ }
142
+ ) }),
143
+ e && /* @__PURE__ */ p("div", { className: "mapui:mt-1 mapui:ml-4 mapui:text-xs mapui:text-gray-600", children: [
144
+ r && /* @__PURE__ */ a("div", { className: "mapui:font-medium mapui:mb-1", children: r }),
145
+ n.length >= 2 && /* @__PURE__ */ p("div", { className: "mapui:flex mapui:justify-between mapui:max-w-32", children: [
146
+ /* @__PURE__ */ a("span", { children: n[0].label }),
147
+ /* @__PURE__ */ a("span", { children: n[n.length - 1].label })
148
+ ] })
149
+ ] })
150
+ ] });
151
+ }
152
+ function j({
153
+ layerId: i,
154
+ opacity: m,
155
+ onChange: e
156
+ }) {
157
+ return /* @__PURE__ */ p("div", { className: "mapui:flex mapui:items-center mapui:gap-1.5 mapui:mt-0.5 mapui:ml-1", children: [
158
+ /* @__PURE__ */ a(
159
+ "input",
160
+ {
161
+ type: "range",
162
+ min: 0,
163
+ max: 1,
164
+ step: 0.01,
165
+ value: m,
166
+ onChange: (u) => e(i, parseFloat(u.target.value)),
167
+ className: "range-sm mapui:w-14"
168
+ }
169
+ ),
170
+ /* @__PURE__ */ p("span", { className: "mapui:text-[9px] mapui:text-gray-400 mapui:w-6 mapui:text-right mapui:tabular-nums", children: [
171
+ Math.round(m * 100),
172
+ "%"
173
+ ] })
174
+ ] });
175
+ }
176
+ function G({ layers: i, visibleLayerIds: m, onOpacityChange: e, className: u }) {
177
+ const [n, r] = f(/* @__PURE__ */ new Set()), [l, d] = f(!1), c = i.filter((t) => m.includes(t.id));
178
+ function h(t) {
179
+ r((o) => {
180
+ const s = new Set(o);
181
+ return s.has(t) ? s.delete(t) : s.add(t), s;
182
+ });
183
+ }
184
+ const x = c.filter((t) => t.legend !== void 0);
185
+ return x.length === 0 ? null : /* @__PURE__ */ p(
186
+ "div",
187
+ {
188
+ className: `mapui:rounded-lg mapui:bg-white mapui:p-3 mapui:shadow-md mapui:text-sm${u ? ` ${u}` : ""}`,
189
+ children: [
190
+ /* @__PURE__ */ p("div", { className: "mapui:flex mapui:items-center mapui:justify-between mapui:mb-2", children: [
191
+ /* @__PURE__ */ a("h3", { className: "mapui:m-0 mapui:text-xs mapui:font-semibold mapui:uppercase mapui:tracking-wide mapui:text-gray-500", children: "Legend" }),
192
+ e && /* @__PURE__ */ a(
193
+ "button",
194
+ {
195
+ type: "button",
196
+ className: "mapui:bg-transparent mapui:border-none mapui:p-0 mapui:cursor-pointer mapui:text-gray-400 hover:mapui:text-gray-600 mapui:text-sm",
197
+ onClick: () => d((t) => !t),
198
+ "aria-label": l ? "Collapse legend" : "Expand legend",
199
+ children: l ? /* @__PURE__ */ a(N, {}) : /* @__PURE__ */ a(y, {})
200
+ }
201
+ )
202
+ ] }),
203
+ /* @__PURE__ */ a("ul", { className: `mapui:m-0 mapui:list-none mapui:p-0 ${l ? "mapui:space-y-1.5" : "mapui:space-y-2"}`, children: x.map((t) => {
204
+ const o = t.legend, s = o.displayMode ?? "simple", b = l || n.has(t.id);
205
+ return /* @__PURE__ */ p("li", { children: [
206
+ s === "categorical" ? /* @__PURE__ */ a(
207
+ L,
208
+ {
209
+ legend: o,
210
+ label: t.label,
211
+ expanded: b,
212
+ onToggle: () => h(t.id)
213
+ }
214
+ ) : s === "gradient" ? /* @__PURE__ */ a(
215
+ E,
216
+ {
217
+ legend: o,
218
+ label: t.label,
219
+ expanded: b,
220
+ onToggle: () => h(t.id)
221
+ }
222
+ ) : /* @__PURE__ */ a(C, { legend: o, label: t.label }),
223
+ l && e && /* @__PURE__ */ a(
224
+ j,
225
+ {
226
+ layerId: t.id,
227
+ opacity: v(t),
228
+ onChange: e
229
+ }
230
+ )
231
+ ] }, t.id);
232
+ }) })
233
+ ]
234
+ }
235
+ );
236
+ }
237
+ export {
238
+ G as L
239
+ };
@@ -1 +1 @@
1
- {"version":3,"file":"LayerEditor.d.ts","sourceRoot":"","sources":["../../../src/components/LayerEditor/LayerEditor.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,YAAY,EAAqB,MAAM,aAAa,CAAC;AAgBhF,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,WAAW,CAAC;IACnB,QAAQ,EAAE,CAAC,KAAK,EAAE,WAAW,KAAK,IAAI,CAAC;IACvC,gBAAgB,EAAE,YAAY,EAAE,CAAC;IACjC,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;CAC3B;AAKD,wBAAgB,WAAW,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,gBAAgB,EAAE,cAAc,EAAE,EAAE,gBAAgB,2CA6NlG"}
1
+ {"version":3,"file":"LayerEditor.d.ts","sourceRoot":"","sources":["../../../src/components/LayerEditor/LayerEditor.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,YAAY,EAAqB,MAAM,aAAa,CAAC;AAgBhF,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,WAAW,CAAC;IACnB,QAAQ,EAAE,CAAC,KAAK,EAAE,WAAW,KAAK,IAAI,CAAC;IACvC,gBAAgB,EAAE,YAAY,EAAE,CAAC;IACjC,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;CAC3B;AAKD,wBAAgB,WAAW,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,gBAAgB,EAAE,cAAc,EAAE,EAAE,gBAAgB,2CAmOlG"}
@@ -2,7 +2,8 @@ import { LayerConfig } from '../../types';
2
2
  export interface LegendProps {
3
3
  layers: LayerConfig[];
4
4
  visibleLayerIds: string[];
5
+ onOpacityChange?: (layerId: string, opacity: number) => void;
5
6
  className?: string;
6
7
  }
7
- export declare function Legend({ layers, visibleLayerIds, className }: LegendProps): import("react/jsx-runtime").JSX.Element | null;
8
+ export declare function Legend({ layers, visibleLayerIds, onOpacityChange, className }: LegendProps): import("react/jsx-runtime").JSX.Element | null;
8
9
  //# sourceMappingURL=Legend.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Legend.d.ts","sourceRoot":"","sources":["../../../src/components/Legend/Legend.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAA4B,MAAM,aAAa,CAAC;AAEzE,MAAM,WAAW,WAAW;IAC1B,MAAM,EAAE,WAAW,EAAE,CAAC;IACtB,eAAe,EAAE,MAAM,EAAE,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAsED,wBAAgB,MAAM,CAAC,EAAE,MAAM,EAAE,eAAe,EAAE,SAAS,EAAE,EAAE,WAAW,kDA0DzE"}
1
+ {"version":3,"file":"Legend.d.ts","sourceRoot":"","sources":["../../../src/components/Legend/Legend.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAA6B,MAAM,aAAa,CAAC;AAE1E,MAAM,WAAW,WAAW;IAC1B,MAAM,EAAE,WAAW,EAAE,CAAC;IACtB,eAAe,EAAE,MAAM,EAAE,CAAC;IAC1B,eAAe,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7D,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AA+ND,wBAAgB,MAAM,CAAC,EAAE,MAAM,EAAE,eAAe,EAAE,eAAe,EAAE,SAAS,EAAE,EAAE,WAAW,kDA8E1F"}
@@ -1,4 +1,4 @@
1
- import { L as r } from "../../Legend-TTWWpWDT.js";
1
+ import { L as r } from "../../Legend-B6uIqOSw.js";
2
2
  export {
3
3
  r as Legend
4
4
  };
@@ -1,7 +1,8 @@
1
- import { LegendConfig } from '../../types';
1
+ import { LegendConfig, StyleConfig } from '../../types';
2
2
  export interface LegendEditorProps {
3
3
  value: LegendConfig | undefined;
4
4
  onChange: (legend: LegendConfig | undefined) => void;
5
+ style?: StyleConfig;
5
6
  }
6
- export declare function LegendEditor({ value, onChange }: LegendEditorProps): import("react/jsx-runtime").JSX.Element;
7
+ export declare function LegendEditor({ value, onChange, style }: LegendEditorProps): import("react/jsx-runtime").JSX.Element;
7
8
  //# sourceMappingURL=LegendEditor.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"LegendEditor.d.ts","sourceRoot":"","sources":["../../../src/components/LegendEditor/LegendEditor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAe,MAAM,aAAa,CAAC;AAG7D,MAAM,WAAW,iBAAiB;IAChC,KAAK,EAAE,YAAY,GAAG,SAAS,CAAC;IAChC,QAAQ,EAAE,CAAC,MAAM,EAAE,YAAY,GAAG,SAAS,KAAK,IAAI,CAAC;CACtD;AAID,wBAAgB,YAAY,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,EAAE,iBAAiB,2CA+ElE"}
1
+ {"version":3,"file":"LegendEditor.d.ts","sourceRoot":"","sources":["../../../src/components/LegendEditor/LegendEditor.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAe,WAAW,EAAE,MAAM,aAAa,CAAC;AAW1E,MAAM,WAAW,iBAAiB;IAChC,KAAK,EAAE,YAAY,GAAG,SAAS,CAAC;IAChC,QAAQ,EAAE,CAAC,MAAM,EAAE,YAAY,GAAG,SAAS,KAAK,IAAI,CAAC;IACrD,KAAK,CAAC,EAAE,WAAW,CAAC;CACrB;AAeD,wBAAgB,YAAY,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,EAAE,iBAAiB,2CA8NzE"}
@@ -0,0 +1,9 @@
1
+ import { AvailableProperty } from '../../types';
2
+ export interface DataDrivenColorEditorProps {
3
+ value: unknown[];
4
+ onChange: (expr: unknown[]) => void;
5
+ availableProperties?: AvailableProperty[];
6
+ onFetchDistinctValues?: (property: string) => Promise<string[]>;
7
+ }
8
+ export declare function DataDrivenColorEditor({ value, onChange, availableProperties, onFetchDistinctValues, }: DataDrivenColorEditorProps): import("react/jsx-runtime").JSX.Element;
9
+ //# sourceMappingURL=DataDrivenColorEditor.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DataDrivenColorEditor.d.ts","sourceRoot":"","sources":["../../../src/components/StyleEditor/DataDrivenColorEditor.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAIrD,MAAM,WAAW,0BAA0B;IACzC,KAAK,EAAE,OAAO,EAAE,CAAC;IACjB,QAAQ,EAAE,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK,IAAI,CAAC;IACpC,mBAAmB,CAAC,EAAE,iBAAiB,EAAE,CAAC;IAC1C,qBAAqB,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC;CACjE;AAiED,wBAAgB,qBAAqB,CAAC,EACpC,KAAK,EACL,QAAQ,EACR,mBAAwB,EACxB,qBAAqB,GACtB,EAAE,0BAA0B,2CA0P5B"}
@@ -1,10 +1,13 @@
1
1
  import { PropertyDefinition } from './propertyMetadata';
2
+ import { AvailableProperty } from '../../types';
2
3
  interface PropertyFieldProps {
3
4
  def: PropertyDefinition;
4
5
  value: unknown;
5
6
  onChange: (key: string, value: unknown) => void;
6
7
  availableIcons?: string[];
8
+ availableProperties?: AvailableProperty[];
9
+ onFetchDistinctValues?: (property: string) => Promise<string[]>;
7
10
  }
8
- export declare function PropertyField({ def, value, onChange, availableIcons }: PropertyFieldProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function PropertyField({ def, value, onChange, availableIcons, availableProperties, onFetchDistinctValues }: PropertyFieldProps): import("react/jsx-runtime").JSX.Element;
9
12
  export {};
10
13
  //# sourceMappingURL=PropertyField.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"PropertyField.d.ts","sourceRoot":"","sources":["../../../src/components/StyleEditor/PropertyField.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAQ7D,UAAU,kBAAkB;IAC1B,GAAG,EAAE,kBAAkB,CAAC;IACxB,KAAK,EAAE,OAAO,CAAC;IACf,QAAQ,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;IAChD,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;CAC3B;AA4LD,wBAAgB,aAAa,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,QAAQ,EAAE,cAAc,EAAE,EAAE,kBAAkB,2CAkDzF"}
1
+ {"version":3,"file":"PropertyField.d.ts","sourceRoot":"","sources":["../../../src/components/StyleEditor/PropertyField.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAC7D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AASrD,UAAU,kBAAkB;IAC1B,GAAG,EAAE,kBAAkB,CAAC;IACxB,KAAK,EAAE,OAAO,CAAC;IACf,QAAQ,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;IAChD,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,mBAAmB,CAAC,EAAE,iBAAiB,EAAE,CAAC;IAC1C,qBAAqB,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC;CACjE;AAsOD,wBAAgB,aAAa,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,QAAQ,EAAE,cAAc,EAAE,mBAAmB,EAAE,qBAAqB,EAAE,EAAE,kBAAkB,2CA2DrI"}
@@ -1,4 +1,5 @@
1
1
  import { PropertyDefinition } from './propertyMetadata';
2
+ import { AvailableProperty } from '../../types';
2
3
  interface PropertyGroupProps {
3
4
  title: string;
4
5
  properties: PropertyDefinition[];
@@ -6,7 +7,9 @@ interface PropertyGroupProps {
6
7
  onChange: (key: string, value: unknown) => void;
7
8
  defaultOpen?: boolean;
8
9
  availableIcons?: string[];
10
+ availableProperties?: AvailableProperty[];
11
+ onFetchDistinctValues?: (property: string) => Promise<string[]>;
9
12
  }
10
- export declare function PropertyGroup({ title, properties, values, onChange, defaultOpen, availableIcons, }: PropertyGroupProps): import("react/jsx-runtime").JSX.Element;
13
+ export declare function PropertyGroup({ title, properties, values, onChange, defaultOpen, availableIcons, availableProperties, onFetchDistinctValues, }: PropertyGroupProps): import("react/jsx-runtime").JSX.Element;
11
14
  export {};
12
15
  //# sourceMappingURL=PropertyGroup.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"PropertyGroup.d.ts","sourceRoot":"","sources":["../../../src/components/StyleEditor/PropertyGroup.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAI7D,UAAU,kBAAkB;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,kBAAkB,EAAE,CAAC;IACjC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAChC,QAAQ,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;IAChD,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;CAC3B;AAED,wBAAgB,aAAa,CAAC,EAC5B,KAAK,EACL,UAAU,EACV,MAAM,EACN,QAAQ,EACR,WAAmB,EACnB,cAAc,GACf,EAAE,kBAAkB,2CAcpB"}
1
+ {"version":3,"file":"PropertyGroup.d.ts","sourceRoot":"","sources":["../../../src/components/StyleEditor/PropertyGroup.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAC7D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAIrD,UAAU,kBAAkB;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,kBAAkB,EAAE,CAAC;IACjC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAChC,QAAQ,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;IAChD,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,mBAAmB,CAAC,EAAE,iBAAiB,EAAE,CAAC;IAC1C,qBAAqB,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC;CACjE;AAED,wBAAgB,aAAa,CAAC,EAC5B,KAAK,EACL,UAAU,EACV,MAAM,EACN,QAAQ,EACR,WAAmB,EACnB,cAAc,EACd,mBAAmB,EACnB,qBAAqB,GACtB,EAAE,kBAAkB,2CAsBpB"}
@@ -1,13 +1,16 @@
1
- import { StyleConfig, FillStyle, LineStyle, CircleStyle, SymbolStyle } from '../../types';
1
+ import { StyleConfig, FillStyle, LineStyle, CircleStyle, SymbolStyle, AvailableProperty } from '../../types';
2
2
  export interface StyleEditorProps {
3
3
  value: StyleConfig;
4
4
  onChange: (style: StyleConfig) => void;
5
5
  suggestedType?: 'fill' | 'line' | 'circle' | 'symbol' | null;
6
+ suggestedTypes?: StyleConfig['type'][];
6
7
  availableIcons?: string[];
8
+ availableProperties?: AvailableProperty[];
9
+ onFetchDistinctValues?: (property: string) => Promise<string[]>;
7
10
  }
8
11
  export declare const defaultFill: FillStyle;
9
12
  export declare const defaultLine: LineStyle;
10
13
  export declare const defaultCircle: CircleStyle;
11
14
  export declare const defaultSymbol: SymbolStyle;
12
- export declare function StyleEditor({ value, onChange, suggestedType, availableIcons }: StyleEditorProps): import("react/jsx-runtime").JSX.Element;
15
+ export declare function StyleEditor({ value, onChange, suggestedType, suggestedTypes, availableIcons, availableProperties, onFetchDistinctValues }: StyleEditorProps): import("react/jsx-runtime").JSX.Element;
13
16
  //# sourceMappingURL=StyleEditor.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"StyleEditor.d.ts","sourceRoot":"","sources":["../../../src/components/StyleEditor/StyleEditor.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,SAAS,EAAE,SAAS,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAM/F,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,WAAW,CAAC;IACnB,QAAQ,EAAE,CAAC,KAAK,EAAE,WAAW,KAAK,IAAI,CAAC;IACvC,aAAa,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ,GAAG,QAAQ,GAAG,IAAI,CAAC;IAC7D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;CAC3B;AAED,eAAO,MAAM,WAAW,EAAE,SAGzB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,SAGzB,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,WAG3B,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,WAI3B,CAAC;AAgCF,wBAAgB,WAAW,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,aAAa,EAAE,cAAc,EAAE,EAAE,gBAAgB,2CAmM/F"}
1
+ {"version":3,"file":"StyleEditor.d.ts","sourceRoot":"","sources":["../../../src/components/StyleEditor/StyleEditor.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,SAAS,EAAE,SAAS,EAAE,WAAW,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAMlH,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,WAAW,CAAC;IACnB,QAAQ,EAAE,CAAC,KAAK,EAAE,WAAW,KAAK,IAAI,CAAC;IACvC,aAAa,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ,GAAG,QAAQ,GAAG,IAAI,CAAC;IAC7D,cAAc,CAAC,EAAE,WAAW,CAAC,MAAM,CAAC,EAAE,CAAC;IACvC,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,mBAAmB,CAAC,EAAE,iBAAiB,EAAE,CAAC;IAC1C,qBAAqB,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC;CACjE;AAED,eAAO,MAAM,WAAW,EAAE,SAGzB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,SAGzB,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,WAG3B,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,WAI3B,CAAC;AAgCF,wBAAgB,WAAW,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,aAAa,EAAE,cAAc,EAAE,cAAc,EAAE,mBAAmB,EAAE,qBAAqB,EAAE,EAAE,gBAAgB,2CAsN3J"}
@@ -1 +1 @@
1
- {"version":3,"file":"StylePreview.d.ts","sourceRoot":"","sources":["../../../src/components/StyleEditor/StylePreview.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,wBAAgB,YAAY,CAAC,EAAE,KAAK,EAAE,EAAE;IAAE,KAAK,EAAE,WAAW,CAAA;CAAE,2CAuE7D"}
1
+ {"version":3,"file":"StylePreview.d.ts","sourceRoot":"","sources":["../../../src/components/StyleEditor/StylePreview.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AA0C/C,wBAAgB,YAAY,CAAC,EAAE,KAAK,EAAE,EAAE;IAAE,KAAK,EAAE,WAAW,CAAA;CAAE,2CAgG7D"}
@@ -1,3 +1,5 @@
1
1
  export { StyleEditor, defaultFill, defaultLine, defaultCircle, defaultSymbol } from './StyleEditor';
2
2
  export type { StyleEditorProps } from './StyleEditor';
3
+ export { DataDrivenColorEditor } from './DataDrivenColorEditor';
4
+ export type { DataDrivenColorEditorProps } from './DataDrivenColorEditor';
3
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/StyleEditor/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,WAAW,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AACpG,YAAY,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/StyleEditor/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,WAAW,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AACpG,YAAY,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAChE,YAAY,EAAE,0BAA0B,EAAE,MAAM,yBAAyB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"UIConfigEditor.d.ts","sourceRoot":"","sources":["../../../src/components/UIConfigEditor/UIConfigEditor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAE5C,MAAM,WAAW,mBAAmB;IAClC,KAAK,EAAE,QAAQ,CAAC;IAChB,QAAQ,EAAE,CAAC,MAAM,EAAE,QAAQ,KAAK,IAAI,CAAC;CACtC;AAaD,wBAAgB,cAAc,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,EAAE,mBAAmB,2CAkDtE"}
1
+ {"version":3,"file":"UIConfigEditor.d.ts","sourceRoot":"","sources":["../../../src/components/UIConfigEditor/UIConfigEditor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAE5C,MAAM,WAAW,mBAAmB;IAClC,KAAK,EAAE,QAAQ,CAAC;IAChB,QAAQ,EAAE,CAAC,MAAM,EAAE,QAAQ,KAAK,IAAI,CAAC;CACtC;AAcD,wBAAgB,cAAc,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,EAAE,mBAAmB,2CAkDtE"}
@@ -22,7 +22,7 @@ export { SourceEditor, SourceList } from './SourceEditor';
22
22
  export type { SourceEditorProps, SourceListProps } from './SourceEditor';
23
23
  export { CollectionBrowser } from './CollectionBrowser';
24
24
  export type { CollectionBrowserProps } from './CollectionBrowser';
25
- export { StyleEditor, defaultFill, defaultLine, defaultCircle } from './StyleEditor';
25
+ export { StyleEditor, defaultFill, defaultLine, defaultCircle, defaultSymbol } from './StyleEditor';
26
26
  export type { StyleEditorProps } from './StyleEditor';
27
27
  export { LegendEntryEditor, LegendEditor } from './LegendEditor';
28
28
  export type { LegendEntryEditorProps, LegendEditorProps } from './LegendEditor';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"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"}