@jxsuite/studio 0.6.1 → 0.7.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/dist/studio.js +151438 -141129
- package/dist/studio.js.map +84 -18
- package/package.json +2 -2
- package/src/markdown/md-convert.js +18 -16
- package/src/panels/activity-bar.js +22 -0
- package/src/panels/elements-panel.js +148 -0
- package/src/panels/git-panel.js +280 -0
- package/src/panels/layers-panel.js +270 -0
- package/src/panels/left-panel.js +141 -0
- package/src/panels/right-panel.js +3 -2
- package/src/panels/style-inputs.js +176 -0
- package/src/panels/style-panel.js +651 -0
- package/src/panels/style-utils.js +193 -0
- package/src/panels/stylebook-layers-panel.js +103 -0
- package/src/platforms/devserver.js +113 -0
- package/src/state.js +7 -0
- package/src/studio.js +38 -1490
- package/src/ui/spectrum.js +4 -0
package/src/ui/spectrum.js
CHANGED
|
@@ -128,6 +128,8 @@ import { IconTextStrikethrough } from "@spectrum-web-components/icons-workflow/s
|
|
|
128
128
|
import { IconTextSuperscript } from "@spectrum-web-components/icons-workflow/src/elements/IconTextSuperscript.js";
|
|
129
129
|
import { IconTextSubscript } from "@spectrum-web-components/icons-workflow/src/elements/IconTextSubscript.js";
|
|
130
130
|
import { IconLink } from "@spectrum-web-components/icons-workflow/src/elements/IconLink.js";
|
|
131
|
+
import { IconDownload } from "@spectrum-web-components/icons-workflow/src/elements/IconDownload.js";
|
|
132
|
+
import { IconCheckmark } from "@spectrum-web-components/icons-workflow/src/elements/IconCheckmark.js";
|
|
131
133
|
|
|
132
134
|
// Custom studio components
|
|
133
135
|
import { JxValueSelector } from "./value-selector.js";
|
|
@@ -240,6 +242,8 @@ const components = [
|
|
|
240
242
|
["sp-icon-text-baseline-shift", IconTextBaselineShift],
|
|
241
243
|
["sp-icon-flip-vertical", IconFlipVertical],
|
|
242
244
|
["sp-icon-remove", IconRemove],
|
|
245
|
+
["sp-icon-download", IconDownload],
|
|
246
|
+
["sp-icon-checkmark", IconCheckmark],
|
|
243
247
|
["sp-icon-view-column", IconViewColumn],
|
|
244
248
|
["sp-icon-box", IconBox],
|
|
245
249
|
["sp-icon-visibility", IconVisibility],
|