@guardian/stand 0.0.50 → 0.0.52
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/Modal.cjs +7 -0
- package/dist/Modal.d.cts +5 -0
- package/dist/Modal.d.ts +5 -0
- package/dist/Modal.js +3 -0
- package/dist/TagPicker.cjs +4 -2
- package/dist/TagPicker.d.cts +3 -2
- package/dist/TagPicker.d.ts +3 -2
- package/dist/TagPicker.js +3 -2
- package/dist/components/Form/Form.cjs +1 -0
- package/dist/components/Form/Form.js +1 -0
- package/dist/components/InlineMessage/InlineMessage.cjs +2 -1
- package/dist/components/InlineMessage/InlineMessage.d.cts +1 -0
- package/dist/components/InlineMessage/InlineMessage.d.ts +1 -0
- package/dist/components/InlineMessage/InlineMessage.js +2 -1
- package/dist/components/InlineMessage/types.d.cts +5 -0
- package/dist/components/InlineMessage/types.d.ts +5 -0
- package/dist/components/Modal/Modal.cjs +97 -0
- package/dist/components/Modal/Modal.d.cts +21 -0
- package/dist/components/Modal/Modal.d.ts +21 -0
- package/dist/components/Modal/Modal.js +93 -0
- package/dist/components/Modal/styles.cjs +100 -0
- package/dist/components/Modal/styles.d.cts +10 -0
- package/dist/components/Modal/styles.d.ts +10 -0
- package/dist/components/Modal/styles.js +92 -0
- package/dist/components/Modal/types.d.cts +20 -0
- package/dist/components/Modal/types.d.ts +20 -0
- package/dist/components/Select/Select.cjs +3 -1
- package/dist/components/Select/Select.d.cts +2 -0
- package/dist/components/Select/Select.d.ts +2 -0
- package/dist/components/Select/Select.js +3 -1
- package/dist/components/Select/types.d.cts +15 -2
- package/dist/components/Select/types.d.ts +15 -2
- package/dist/components/TagPicker/Autocomplete.cjs +60 -48
- package/dist/components/TagPicker/Autocomplete.d.cts +12 -2
- package/dist/components/TagPicker/Autocomplete.d.ts +12 -2
- package/dist/components/TagPicker/Autocomplete.js +63 -51
- package/dist/components/TagPicker/TagPicker.cjs +105 -0
- package/dist/components/TagPicker/TagPicker.d.cts +91 -0
- package/dist/components/TagPicker/TagPicker.d.ts +91 -0
- package/dist/components/TagPicker/TagPicker.js +105 -0
- package/dist/components/TagPicker/TagSearchWithFilters.cjs +53 -0
- package/dist/components/TagPicker/TagSearchWithFilters.js +53 -0
- package/dist/components/TagPicker/TagTable.cjs +10 -49
- package/dist/components/TagPicker/TagTable.d.cts +12 -48
- package/dist/components/TagPicker/TagTable.d.ts +12 -48
- package/dist/components/TagPicker/TagTable.js +29 -68
- package/dist/components/TagPicker/styles.cjs +64 -3
- package/dist/components/TagPicker/styles.js +59 -4
- package/dist/components/TagPicker/types.d.cts +5 -1
- package/dist/components/TagPicker/types.d.ts +5 -1
- package/dist/components/Typography/Typography.cjs +7 -4
- package/dist/components/Typography/Typography.d.cts +1 -5
- package/dist/components/Typography/Typography.d.ts +1 -5
- package/dist/components/Typography/Typography.js +7 -4
- package/dist/components/Typography/types.d.cts +3 -2
- package/dist/components/Typography/types.d.ts +3 -2
- package/dist/components/UserMenu/PreferenceRadioGroup.js +5 -5
- package/dist/index.cjs +2 -0
- package/dist/index.d.cts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +2 -1
- package/dist/styleD/build/css/component/autocomplete.css +3 -0
- package/dist/styleD/build/css/component/modal.css +51 -0
- package/dist/styleD/build/css/component/tagPicker.css +11 -0
- package/dist/styleD/build/css/component/tagTable.css +2 -2
- package/dist/styleD/build/typescript/component/autocomplete.cjs +5 -0
- package/dist/styleD/build/typescript/component/autocomplete.d.cts +5 -0
- package/dist/styleD/build/typescript/component/autocomplete.d.ts +5 -0
- package/dist/styleD/build/typescript/component/autocomplete.js +5 -0
- package/dist/styleD/build/typescript/component/intendedAudienceSignifier.cjs +4 -1
- package/dist/styleD/build/typescript/component/intendedAudienceSignifier.d.cts +1 -0
- package/dist/styleD/build/typescript/component/intendedAudienceSignifier.d.ts +1 -0
- package/dist/styleD/build/typescript/component/intendedAudienceSignifier.js +4 -1
- package/dist/styleD/build/typescript/component/modal.cjs +72 -0
- package/dist/styleD/build/typescript/component/modal.d.cts +75 -0
- package/dist/styleD/build/typescript/component/modal.d.ts +75 -0
- package/dist/styleD/build/typescript/component/modal.js +72 -0
- package/dist/styleD/build/typescript/component/tagPicker.cjs +17 -0
- package/dist/styleD/build/typescript/component/tagPicker.d.cts +20 -0
- package/dist/styleD/build/typescript/component/tagPicker.d.ts +20 -0
- package/dist/styleD/build/typescript/component/tagPicker.js +17 -0
- package/dist/styleD/build/typescript/component/tagTable.cjs +2 -2
- package/dist/styleD/build/typescript/component/tagTable.js +2 -2
- package/package.json +16 -2
- package/dist/components/TagPicker/TagAutocomplete.cjs +0 -118
- package/dist/components/TagPicker/TagAutocomplete.d.cts +0 -144
- package/dist/components/TagPicker/TagAutocomplete.d.ts +0 -144
- package/dist/components/TagPicker/TagAutocomplete.js +0 -118
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { radioGroupLabelStyles, toggleButtonRowsGroupStyles, toggleButtonStackedGroupStyles, toggleButtonStyles } from "./styles.js";
|
|
2
2
|
import { css } from "@emotion/react";
|
|
3
|
-
import { jsx
|
|
3
|
+
import { jsx, jsxs } from "@emotion/react/jsx-runtime";
|
|
4
4
|
import { ToggleButton, ToggleButtonGroup } from "react-aria-components";
|
|
5
5
|
//#region src/components/UserMenu/PreferenceRadioGroup.tsx
|
|
6
6
|
function PreferenceRadioGroup({ name, options, currentValue, changeValue, theme, format = "stack" }) {
|
|
@@ -8,10 +8,10 @@ function PreferenceRadioGroup({ name, options, currentValue, changeValue, theme,
|
|
|
8
8
|
const buttonStyle = format === "stack" ? toggleButtonStyles(theme) : [toggleButtonStyles(theme), css({ flexBasis: "30%" })];
|
|
9
9
|
const defaultOptionId = options.find((option) => option.isDefault)?.id;
|
|
10
10
|
const selectedKeys = currentValue ? [currentValue] : defaultOptionId ? [defaultOptionId] : [];
|
|
11
|
-
return /* @__PURE__ */ jsxs("label", { children: [/* @__PURE__ */ jsx
|
|
11
|
+
return /* @__PURE__ */ jsxs("label", { children: [/* @__PURE__ */ jsx("div", {
|
|
12
12
|
css: radioGroupLabelStyles(theme),
|
|
13
13
|
children: name
|
|
14
|
-
}), /* @__PURE__ */ jsx
|
|
14
|
+
}), /* @__PURE__ */ jsx(ToggleButtonGroup, {
|
|
15
15
|
css: groupCss,
|
|
16
16
|
selectionMode: "single",
|
|
17
17
|
orientation: format === "stack" ? "vertical" : "horizontal",
|
|
@@ -24,10 +24,10 @@ function PreferenceRadioGroup({ name, options, currentValue, changeValue, theme,
|
|
|
24
24
|
id: option.id,
|
|
25
25
|
css: buttonStyle,
|
|
26
26
|
style: option.buttonStyle,
|
|
27
|
-
children: [/* @__PURE__ */ jsx
|
|
27
|
+
children: [/* @__PURE__ */ jsx("div", {
|
|
28
28
|
style: option.labelStyle,
|
|
29
29
|
children: option.label ?? option.id
|
|
30
|
-
}), /* @__PURE__ */ jsx
|
|
30
|
+
}), /* @__PURE__ */ jsx("div", { children: option.description })]
|
|
31
31
|
}, index))
|
|
32
32
|
})] });
|
|
33
33
|
}
|
package/dist/index.cjs
CHANGED
|
@@ -16,6 +16,7 @@ const require_grid = require("./styleD/build/typescript/component/grid.cjs");
|
|
|
16
16
|
const require_form = require("./styleD/build/typescript/component/form.cjs");
|
|
17
17
|
const require_inlineMessage = require("./styleD/build/typescript/component/inlineMessage.cjs");
|
|
18
18
|
const require_menu = require("./styleD/build/typescript/component/menu.cjs");
|
|
19
|
+
const require_modal = require("./styleD/build/typescript/component/modal.cjs");
|
|
19
20
|
const require_layout = require("./styleD/build/typescript/component/layout.cjs");
|
|
20
21
|
const require_link = require("./styleD/build/typescript/component/link.cjs");
|
|
21
22
|
const require_radioGroup = require("./styleD/build/typescript/component/radioGroup.cjs");
|
|
@@ -57,6 +58,7 @@ exports.componentIntendedAudienceSignifier = require_intendedAudienceSignifier.c
|
|
|
57
58
|
exports.componentLayout = require_layout.componentLayout;
|
|
58
59
|
exports.componentLink = require_link.componentLink;
|
|
59
60
|
exports.componentMenu = require_menu.componentMenu;
|
|
61
|
+
exports.componentModal = require_modal.componentModal;
|
|
60
62
|
exports.componentRadioGroup = require_radioGroup.componentRadioGroup;
|
|
61
63
|
exports.componentSelect = require_select.componentSelect;
|
|
62
64
|
exports.componentTagTable = require_tagTable.componentTagTable;
|
package/dist/index.d.cts
CHANGED
|
@@ -9,13 +9,14 @@ import { ComponentDatePicker, componentDatePicker } from "./styleD/build/typescr
|
|
|
9
9
|
import { ComponentFavicon, componentFavicon } from "./styleD/build/typescript/component/favicon.cjs";
|
|
10
10
|
import { SemanticBreakpoints, semanticBreakpoints } from "./styleD/build/typescript/semantic/breakpoints.cjs";
|
|
11
11
|
import { ComponentGrid, componentGrid } from "./styleD/build/typescript/component/grid.cjs";
|
|
12
|
+
import { SemanticTypography, semanticTypography } from "./styleD/build/typescript/semantic/typography.cjs";
|
|
13
|
+
import { ComponentTypography, componentTypography } from "./styleD/build/typescript/component/typography.cjs";
|
|
12
14
|
import { ComponentInlineMessage, componentInlineMessage } from "./styleD/build/typescript/component/inlineMessage.cjs";
|
|
13
15
|
import { ComponentIntendedAudienceSignifier, componentIntendedAudienceSignifier } from "./styleD/build/typescript/component/intendedAudienceSignifier.cjs";
|
|
14
16
|
import { ComponentLayout, componentLayout } from "./styleD/build/typescript/component/layout.cjs";
|
|
15
|
-
import { SemanticTypography, semanticTypography } from "./styleD/build/typescript/semantic/typography.cjs";
|
|
16
|
-
import { ComponentTypography, componentTypography } from "./styleD/build/typescript/component/typography.cjs";
|
|
17
17
|
import { ComponentLink, componentLink } from "./styleD/build/typescript/component/link.cjs";
|
|
18
18
|
import { ComponentMenu, componentMenu } from "./styleD/build/typescript/component/menu.cjs";
|
|
19
|
+
import { ComponentModal, componentModal } from "./styleD/build/typescript/component/modal.cjs";
|
|
19
20
|
import { ComponentRadioGroup, componentRadioGroup } from "./styleD/build/typescript/component/radioGroup.cjs";
|
|
20
21
|
import { ComponentSelect, componentSelect } from "./styleD/build/typescript/component/select.cjs";
|
|
21
22
|
import { ComponentAutocomplete, componentAutocomplete } from "./styleD/build/typescript/component/autocomplete.cjs";
|
|
@@ -35,4 +36,4 @@ import { SemanticSizing, semanticSizing } from "./styleD/build/typescript/semant
|
|
|
35
36
|
import { SemanticShadow, semanticShadow } from "./styleD/build/typescript/semantic/shadow.cjs";
|
|
36
37
|
import { SemanticRadius, semanticRadius } from "./styleD/build/typescript/semantic/radius.cjs";
|
|
37
38
|
import { SemanticSpacing, semanticSpacing } from "./styleD/build/typescript/semantic/spacing.cjs";
|
|
38
|
-
export { type BaseColors, type BaseRadius, type BaseSizing, type BaseSpacing, type BaseTypography, type ComponentAlertBanner, type ComponentAutocomplete, type ComponentAvatar, type ComponentButton, type ComponentByline, type ComponentCheckbox, type ComponentDatePicker, type ComponentFavicon, type ComponentForm, type ComponentGrid, type ComponentIcon, type ComponentInlineMessage, type ComponentIntendedAudienceSignifier, type ComponentLayout, type ComponentLink, type ComponentMenu, type ComponentRadioGroup, type ComponentSelect, type ComponentTagTable, type ComponentTextArea, type ComponentTextInput, type ComponentTopBar, type ComponentTypography, type ComponentUserMenu, type SemanticBreakpoints, type SemanticColors, type SemanticGrid, type SemanticRadius, type SemanticShadow, type SemanticSizing, type SemanticSpacing, type SemanticTypography, baseColors, baseRadius, baseSizing, baseSpacing, baseTypography, componentAlertBanner, componentAutocomplete, componentAvatar, componentButton, componentByline, componentCheckbox, componentDatePicker, componentFavicon, componentForm, componentGrid, componentIcon, componentInlineMessage, componentIntendedAudienceSignifier, componentLayout, componentLink, componentMenu, componentRadioGroup, componentSelect, componentTagTable, componentTextArea, componentTextInput, componentTopBar, componentTypography, componentUserMenu, semanticBreakpoints, semanticColors, semanticGrid, semanticRadius, semanticShadow, semanticSizing, semanticSpacing, semanticTypography };
|
|
39
|
+
export { type BaseColors, type BaseRadius, type BaseSizing, type BaseSpacing, type BaseTypography, type ComponentAlertBanner, type ComponentAutocomplete, type ComponentAvatar, type ComponentButton, type ComponentByline, type ComponentCheckbox, type ComponentDatePicker, type ComponentFavicon, type ComponentForm, type ComponentGrid, type ComponentIcon, type ComponentInlineMessage, type ComponentIntendedAudienceSignifier, type ComponentLayout, type ComponentLink, type ComponentMenu, type ComponentModal, type ComponentRadioGroup, type ComponentSelect, type ComponentTagTable, type ComponentTextArea, type ComponentTextInput, type ComponentTopBar, type ComponentTypography, type ComponentUserMenu, type SemanticBreakpoints, type SemanticColors, type SemanticGrid, type SemanticRadius, type SemanticShadow, type SemanticSizing, type SemanticSpacing, type SemanticTypography, baseColors, baseRadius, baseSizing, baseSpacing, baseTypography, componentAlertBanner, componentAutocomplete, componentAvatar, componentButton, componentByline, componentCheckbox, componentDatePicker, componentFavicon, componentForm, componentGrid, componentIcon, componentInlineMessage, componentIntendedAudienceSignifier, componentLayout, componentLink, componentMenu, componentModal, componentRadioGroup, componentSelect, componentTagTable, componentTextArea, componentTextInput, componentTopBar, componentTypography, componentUserMenu, semanticBreakpoints, semanticColors, semanticGrid, semanticRadius, semanticShadow, semanticSizing, semanticSpacing, semanticTypography };
|
package/dist/index.d.ts
CHANGED
|
@@ -9,13 +9,14 @@ import { ComponentDatePicker, componentDatePicker } from "./styleD/build/typescr
|
|
|
9
9
|
import { ComponentFavicon, componentFavicon } from "./styleD/build/typescript/component/favicon.js";
|
|
10
10
|
import { SemanticBreakpoints, semanticBreakpoints } from "./styleD/build/typescript/semantic/breakpoints.js";
|
|
11
11
|
import { ComponentGrid, componentGrid } from "./styleD/build/typescript/component/grid.js";
|
|
12
|
+
import { SemanticTypography, semanticTypography } from "./styleD/build/typescript/semantic/typography.js";
|
|
13
|
+
import { ComponentTypography, componentTypography } from "./styleD/build/typescript/component/typography.js";
|
|
12
14
|
import { ComponentInlineMessage, componentInlineMessage } from "./styleD/build/typescript/component/inlineMessage.js";
|
|
13
15
|
import { ComponentIntendedAudienceSignifier, componentIntendedAudienceSignifier } from "./styleD/build/typescript/component/intendedAudienceSignifier.js";
|
|
14
16
|
import { ComponentLayout, componentLayout } from "./styleD/build/typescript/component/layout.js";
|
|
15
|
-
import { SemanticTypography, semanticTypography } from "./styleD/build/typescript/semantic/typography.js";
|
|
16
|
-
import { ComponentTypography, componentTypography } from "./styleD/build/typescript/component/typography.js";
|
|
17
17
|
import { ComponentLink, componentLink } from "./styleD/build/typescript/component/link.js";
|
|
18
18
|
import { ComponentMenu, componentMenu } from "./styleD/build/typescript/component/menu.js";
|
|
19
|
+
import { ComponentModal, componentModal } from "./styleD/build/typescript/component/modal.js";
|
|
19
20
|
import { ComponentRadioGroup, componentRadioGroup } from "./styleD/build/typescript/component/radioGroup.js";
|
|
20
21
|
import { ComponentSelect, componentSelect } from "./styleD/build/typescript/component/select.js";
|
|
21
22
|
import { ComponentAutocomplete, componentAutocomplete } from "./styleD/build/typescript/component/autocomplete.js";
|
|
@@ -35,4 +36,4 @@ import { SemanticSizing, semanticSizing } from "./styleD/build/typescript/semant
|
|
|
35
36
|
import { SemanticShadow, semanticShadow } from "./styleD/build/typescript/semantic/shadow.js";
|
|
36
37
|
import { SemanticRadius, semanticRadius } from "./styleD/build/typescript/semantic/radius.js";
|
|
37
38
|
import { SemanticSpacing, semanticSpacing } from "./styleD/build/typescript/semantic/spacing.js";
|
|
38
|
-
export { type BaseColors, type BaseRadius, type BaseSizing, type BaseSpacing, type BaseTypography, type ComponentAlertBanner, type ComponentAutocomplete, type ComponentAvatar, type ComponentButton, type ComponentByline, type ComponentCheckbox, type ComponentDatePicker, type ComponentFavicon, type ComponentForm, type ComponentGrid, type ComponentIcon, type ComponentInlineMessage, type ComponentIntendedAudienceSignifier, type ComponentLayout, type ComponentLink, type ComponentMenu, type ComponentRadioGroup, type ComponentSelect, type ComponentTagTable, type ComponentTextArea, type ComponentTextInput, type ComponentTopBar, type ComponentTypography, type ComponentUserMenu, type SemanticBreakpoints, type SemanticColors, type SemanticGrid, type SemanticRadius, type SemanticShadow, type SemanticSizing, type SemanticSpacing, type SemanticTypography, baseColors, baseRadius, baseSizing, baseSpacing, baseTypography, componentAlertBanner, componentAutocomplete, componentAvatar, componentButton, componentByline, componentCheckbox, componentDatePicker, componentFavicon, componentForm, componentGrid, componentIcon, componentInlineMessage, componentIntendedAudienceSignifier, componentLayout, componentLink, componentMenu, componentRadioGroup, componentSelect, componentTagTable, componentTextArea, componentTextInput, componentTopBar, componentTypography, componentUserMenu, semanticBreakpoints, semanticColors, semanticGrid, semanticRadius, semanticShadow, semanticSizing, semanticSpacing, semanticTypography };
|
|
39
|
+
export { type BaseColors, type BaseRadius, type BaseSizing, type BaseSpacing, type BaseTypography, type ComponentAlertBanner, type ComponentAutocomplete, type ComponentAvatar, type ComponentButton, type ComponentByline, type ComponentCheckbox, type ComponentDatePicker, type ComponentFavicon, type ComponentForm, type ComponentGrid, type ComponentIcon, type ComponentInlineMessage, type ComponentIntendedAudienceSignifier, type ComponentLayout, type ComponentLink, type ComponentMenu, type ComponentModal, type ComponentRadioGroup, type ComponentSelect, type ComponentTagTable, type ComponentTextArea, type ComponentTextInput, type ComponentTopBar, type ComponentTypography, type ComponentUserMenu, type SemanticBreakpoints, type SemanticColors, type SemanticGrid, type SemanticRadius, type SemanticShadow, type SemanticSizing, type SemanticSpacing, type SemanticTypography, baseColors, baseRadius, baseSizing, baseSpacing, baseTypography, componentAlertBanner, componentAutocomplete, componentAvatar, componentButton, componentByline, componentCheckbox, componentDatePicker, componentFavicon, componentForm, componentGrid, componentIcon, componentInlineMessage, componentIntendedAudienceSignifier, componentLayout, componentLink, componentMenu, componentModal, componentRadioGroup, componentSelect, componentTagTable, componentTextArea, componentTextInput, componentTopBar, componentTypography, componentUserMenu, semanticBreakpoints, semanticColors, semanticGrid, semanticRadius, semanticShadow, semanticSizing, semanticSpacing, semanticTypography };
|
package/dist/index.js
CHANGED
|
@@ -15,6 +15,7 @@ import { componentGrid } from "./styleD/build/typescript/component/grid.js";
|
|
|
15
15
|
import { componentForm } from "./styleD/build/typescript/component/form.js";
|
|
16
16
|
import { componentInlineMessage } from "./styleD/build/typescript/component/inlineMessage.js";
|
|
17
17
|
import { componentMenu } from "./styleD/build/typescript/component/menu.js";
|
|
18
|
+
import { componentModal } from "./styleD/build/typescript/component/modal.js";
|
|
18
19
|
import { componentLayout } from "./styleD/build/typescript/component/layout.js";
|
|
19
20
|
import { componentLink } from "./styleD/build/typescript/component/link.js";
|
|
20
21
|
import { componentRadioGroup } from "./styleD/build/typescript/component/radioGroup.js";
|
|
@@ -35,4 +36,4 @@ import { semanticSizing } from "./styleD/build/typescript/semantic/sizing.js";
|
|
|
35
36
|
import { semanticShadow } from "./styleD/build/typescript/semantic/shadow.js";
|
|
36
37
|
import { semanticRadius } from "./styleD/build/typescript/semantic/radius.js";
|
|
37
38
|
import { semanticSpacing } from "./styleD/build/typescript/semantic/spacing.js";
|
|
38
|
-
export { baseColors, baseRadius, baseSizing, baseSpacing, baseTypography, componentAlertBanner, componentAutocomplete, componentAvatar, componentButton, componentByline, componentCheckbox, componentDatePicker, componentFavicon, componentForm, componentGrid, componentIcon, componentInlineMessage, componentIntendedAudienceSignifier, componentLayout, componentLink, componentMenu, componentRadioGroup, componentSelect, componentTagTable, componentTextArea, componentTextInput, componentTopBar, componentTypography, componentUserMenu, semanticBreakpoints, semanticColors, semanticGrid, semanticRadius, semanticShadow, semanticSizing, semanticSpacing, semanticTypography };
|
|
39
|
+
export { baseColors, baseRadius, baseSizing, baseSpacing, baseTypography, componentAlertBanner, componentAutocomplete, componentAvatar, componentButton, componentByline, componentCheckbox, componentDatePicker, componentFavicon, componentForm, componentGrid, componentIcon, componentInlineMessage, componentIntendedAudienceSignifier, componentLayout, componentLink, componentMenu, componentModal, componentRadioGroup, componentSelect, componentTagTable, componentTextArea, componentTextInput, componentTopBar, componentTypography, componentUserMenu, semanticBreakpoints, semanticColors, semanticGrid, semanticRadius, semanticShadow, semanticSizing, semanticSpacing, semanticTypography };
|
|
@@ -10,6 +10,9 @@
|
|
|
10
10
|
--component-autocomplete-input-border-style: solid;
|
|
11
11
|
--component-autocomplete-input-border-color: #8d8d8d;
|
|
12
12
|
--component-autocomplete-input-padding: 11px;
|
|
13
|
+
--component-autocomplete-icon-size: 20px;
|
|
14
|
+
--component-autocomplete-icon-padding-x: 4px;
|
|
15
|
+
--component-autocomplete-icon-color: #bababa;
|
|
13
16
|
--component-autocomplete-listbox-border-width: 1px;
|
|
14
17
|
--component-autocomplete-listbox-border-style: solid;
|
|
15
18
|
--component-autocomplete-listbox-border-color: #8d8d8d;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly, this file was auto-generated.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
--component-modal-overlay-position: absolute;
|
|
7
|
+
--component-modal-overlay-top: 0;
|
|
8
|
+
--component-modal-overlay-left: 0;
|
|
9
|
+
--component-modal-overlay-width: 100%;
|
|
10
|
+
--component-modal-overlay-height: 100%;
|
|
11
|
+
--component-modal-overlay-background-color: rgba(0, 0, 0, 0.4);
|
|
12
|
+
--component-modal-overlay-overflow: clip;
|
|
13
|
+
--component-modal-overlay-z-index: 100;
|
|
14
|
+
--component-modal-modal-position: sticky;
|
|
15
|
+
--component-modal-modal-max-height: 90%;
|
|
16
|
+
--component-modal-modal-top: 50%;
|
|
17
|
+
--component-modal-modal-margin-left: 50svw;
|
|
18
|
+
--component-modal-modal-translate: -50% -50%;
|
|
19
|
+
--component-modal-modal-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
|
|
20
|
+
--component-modal-modal-border-radius: 0.5rem;
|
|
21
|
+
--component-modal-modal-width: max-content;
|
|
22
|
+
--component-modal-modal-max-width: min(484px, 90svw);
|
|
23
|
+
--component-modal-modal-background-color: #ffffff;
|
|
24
|
+
--component-modal-modal-padding-top: 1rem;
|
|
25
|
+
--component-modal-modal-padding-bottom: 2rem;
|
|
26
|
+
--component-modal-modal-padding-left: 2rem;
|
|
27
|
+
--component-modal-modal-padding-right: 2rem;
|
|
28
|
+
--component-modal-dialog-container-display: grid;
|
|
29
|
+
--component-modal-dialog-container-grid-template-areas: 'dismiss' 'title'
|
|
30
|
+
'children' 'ctas';
|
|
31
|
+
--component-modal-dialog-container-grid-template-columns: 1fr;
|
|
32
|
+
--component-modal-dialog-container-grid-template-rows: auto auto 1fr auto;
|
|
33
|
+
--component-modal-dialog-dismiss-grid-area: dismiss;
|
|
34
|
+
--component-modal-dialog-dismiss-margin-left: auto;
|
|
35
|
+
--component-modal-dialog-dismiss-margin-bottom: 1rem;
|
|
36
|
+
--component-modal-dialog-dismiss-border: none;
|
|
37
|
+
--component-modal-dialog-dismiss-height: 1rem;
|
|
38
|
+
--component-modal-dialog-dismiss-width: 1rem;
|
|
39
|
+
--component-modal-dialog-dismiss-hovered-background: none;
|
|
40
|
+
--component-modal-dialog-dismiss-hovered-border: none;
|
|
41
|
+
--component-modal-dialog-title-grid-area: title;
|
|
42
|
+
--component-modal-dialog-title-margin-bottom: 1rem;
|
|
43
|
+
--component-modal-dialog-children-grid-area: children;
|
|
44
|
+
--component-modal-dialog-children-margin-bottom: 2.5rem;
|
|
45
|
+
--component-modal-dialog-ctas-grid-area: ctas;
|
|
46
|
+
--component-modal-dialog-ctas-display: flex;
|
|
47
|
+
--component-modal-dialog-ctas-flex-direction: column;
|
|
48
|
+
--component-modal-dialog-ctas-gap: 1rem;
|
|
49
|
+
--component-modal-dialog-ctas-justify-content: flex-end;
|
|
50
|
+
--component-modal-dialog-ctas-md-flex-direction: row;
|
|
51
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly, this file was auto-generated.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
--component-tag-picker-shared-width: 100%;
|
|
7
|
+
--component-tag-picker-shared-gap: 15px;
|
|
8
|
+
--component-tag-picker-select-flex-basis: 25%;
|
|
9
|
+
--component-tag-picker-offline-section-justify-content: flex-start;
|
|
10
|
+
--component-tag-picker-offline-section-gap: 4px;
|
|
11
|
+
}
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
--component-tag-table-add-button-color: #ffffff;
|
|
27
27
|
--component-tag-table-add-button-padding-x: 10px;
|
|
28
28
|
--component-tag-table-add-button-padding-y: 0px;
|
|
29
|
-
--component-tag-table-add-button-background-color: #
|
|
30
|
-
--component-tag-table-add-button-background-hover-color: #
|
|
29
|
+
--component-tag-table-add-button-background-color: #545454;
|
|
30
|
+
--component-tag-table-add-button-background-hover-color: #333333;
|
|
31
31
|
--component-tag-table-add-button-font-weight: 400;
|
|
32
32
|
--component-tag-table-add-button-font-size: 13px;
|
|
33
33
|
--component-tag-table-type-badge-color: #000000;
|
|
@@ -25,7 +25,10 @@ const componentIntendedAudienceSignifier = {
|
|
|
25
25
|
size: "10px"
|
|
26
26
|
},
|
|
27
27
|
color: "#545454",
|
|
28
|
-
typography: {
|
|
28
|
+
typography: {
|
|
29
|
+
font: "normal 460 0.75rem/1.3 Open Sans",
|
|
30
|
+
lineHeight: "1"
|
|
31
|
+
}
|
|
29
32
|
};
|
|
30
33
|
//#endregion
|
|
31
34
|
exports.componentIntendedAudienceSignifier = componentIntendedAudienceSignifier;
|
|
@@ -25,7 +25,10 @@ const componentIntendedAudienceSignifier = {
|
|
|
25
25
|
size: "10px"
|
|
26
26
|
},
|
|
27
27
|
color: "#545454",
|
|
28
|
-
typography: {
|
|
28
|
+
typography: {
|
|
29
|
+
font: "normal 460 0.75rem/1.3 Open Sans",
|
|
30
|
+
lineHeight: "1"
|
|
31
|
+
}
|
|
29
32
|
};
|
|
30
33
|
//#endregion
|
|
31
34
|
export { componentIntendedAudienceSignifier };
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
//#region src/styleD/build/typescript/component/modal.ts
|
|
2
|
+
/**
|
|
3
|
+
* Do not edit directly, this file was auto-generated.
|
|
4
|
+
*/
|
|
5
|
+
const componentModal = {
|
|
6
|
+
overlay: {
|
|
7
|
+
position: "absolute",
|
|
8
|
+
top: 0,
|
|
9
|
+
left: 0,
|
|
10
|
+
width: "100%",
|
|
11
|
+
height: "100%",
|
|
12
|
+
backgroundColor: "#00000066",
|
|
13
|
+
overflow: "clip",
|
|
14
|
+
zIndex: 100
|
|
15
|
+
},
|
|
16
|
+
modal: {
|
|
17
|
+
position: "sticky",
|
|
18
|
+
maxHeight: "90%",
|
|
19
|
+
top: "50%",
|
|
20
|
+
marginLeft: "50svw",
|
|
21
|
+
translate: "-50% -50%",
|
|
22
|
+
boxShadow: "0 2px 6px 0 rgba(0, 0, 0, 0.30)",
|
|
23
|
+
borderRadius: "0.5rem",
|
|
24
|
+
width: "max-content",
|
|
25
|
+
maxWidth: "min(484px, 90svw)",
|
|
26
|
+
backgroundColor: "#ffffff",
|
|
27
|
+
padding: {
|
|
28
|
+
top: "1rem",
|
|
29
|
+
bottom: "2rem",
|
|
30
|
+
left: "2rem",
|
|
31
|
+
right: "2rem"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
dialog: {
|
|
35
|
+
container: {
|
|
36
|
+
display: "grid",
|
|
37
|
+
gridTemplateAreas: "'dismiss' 'title' 'children' 'ctas'",
|
|
38
|
+
gridTemplateColumns: "1fr",
|
|
39
|
+
gridTemplateRows: "auto auto 1fr auto"
|
|
40
|
+
},
|
|
41
|
+
dismiss: {
|
|
42
|
+
gridArea: "dismiss",
|
|
43
|
+
marginLeft: "auto",
|
|
44
|
+
marginBottom: "1rem",
|
|
45
|
+
border: "none",
|
|
46
|
+
height: "1rem",
|
|
47
|
+
width: "1rem",
|
|
48
|
+
hovered: {
|
|
49
|
+
background: "none",
|
|
50
|
+
border: "none"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
title: {
|
|
54
|
+
gridArea: "title",
|
|
55
|
+
marginBottom: "1rem"
|
|
56
|
+
},
|
|
57
|
+
children: {
|
|
58
|
+
gridArea: "children",
|
|
59
|
+
marginBottom: "2.5rem"
|
|
60
|
+
},
|
|
61
|
+
ctas: {
|
|
62
|
+
gridArea: "ctas",
|
|
63
|
+
display: "flex",
|
|
64
|
+
flexDirection: "column",
|
|
65
|
+
gap: "1rem",
|
|
66
|
+
justifyContent: "flex-end",
|
|
67
|
+
md: { flexDirection: "row" }
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
};
|
|
71
|
+
//#endregion
|
|
72
|
+
exports.componentModal = componentModal;
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
//#region src/styleD/build/typescript/component/modal.d.ts
|
|
2
|
+
/**
|
|
3
|
+
* Do not edit directly, this file was auto-generated.
|
|
4
|
+
*/
|
|
5
|
+
declare const componentModal: {
|
|
6
|
+
overlay: {
|
|
7
|
+
position: string;
|
|
8
|
+
top: number;
|
|
9
|
+
left: number;
|
|
10
|
+
width: string;
|
|
11
|
+
height: string;
|
|
12
|
+
backgroundColor: string;
|
|
13
|
+
overflow: string;
|
|
14
|
+
zIndex: number;
|
|
15
|
+
};
|
|
16
|
+
modal: {
|
|
17
|
+
position: string;
|
|
18
|
+
maxHeight: string;
|
|
19
|
+
top: string;
|
|
20
|
+
marginLeft: string;
|
|
21
|
+
translate: string;
|
|
22
|
+
boxShadow: string;
|
|
23
|
+
borderRadius: string;
|
|
24
|
+
width: string;
|
|
25
|
+
maxWidth: string;
|
|
26
|
+
backgroundColor: string;
|
|
27
|
+
padding: {
|
|
28
|
+
top: string;
|
|
29
|
+
bottom: string;
|
|
30
|
+
left: string;
|
|
31
|
+
right: string;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
dialog: {
|
|
35
|
+
container: {
|
|
36
|
+
display: string;
|
|
37
|
+
gridTemplateAreas: string;
|
|
38
|
+
gridTemplateColumns: string;
|
|
39
|
+
gridTemplateRows: string;
|
|
40
|
+
};
|
|
41
|
+
dismiss: {
|
|
42
|
+
gridArea: string;
|
|
43
|
+
marginLeft: string;
|
|
44
|
+
marginBottom: string;
|
|
45
|
+
border: string;
|
|
46
|
+
height: string;
|
|
47
|
+
width: string;
|
|
48
|
+
hovered: {
|
|
49
|
+
background: string;
|
|
50
|
+
border: string;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
title: {
|
|
54
|
+
gridArea: string;
|
|
55
|
+
marginBottom: string;
|
|
56
|
+
};
|
|
57
|
+
children: {
|
|
58
|
+
gridArea: string;
|
|
59
|
+
marginBottom: string;
|
|
60
|
+
};
|
|
61
|
+
ctas: {
|
|
62
|
+
gridArea: string;
|
|
63
|
+
display: string;
|
|
64
|
+
flexDirection: string;
|
|
65
|
+
gap: string;
|
|
66
|
+
justifyContent: string;
|
|
67
|
+
md: {
|
|
68
|
+
flexDirection: string;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
type ComponentModal = typeof componentModal;
|
|
74
|
+
//#endregion
|
|
75
|
+
export { ComponentModal, componentModal };
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
//#region src/styleD/build/typescript/component/modal.d.ts
|
|
2
|
+
/**
|
|
3
|
+
* Do not edit directly, this file was auto-generated.
|
|
4
|
+
*/
|
|
5
|
+
declare const componentModal: {
|
|
6
|
+
overlay: {
|
|
7
|
+
position: string;
|
|
8
|
+
top: number;
|
|
9
|
+
left: number;
|
|
10
|
+
width: string;
|
|
11
|
+
height: string;
|
|
12
|
+
backgroundColor: string;
|
|
13
|
+
overflow: string;
|
|
14
|
+
zIndex: number;
|
|
15
|
+
};
|
|
16
|
+
modal: {
|
|
17
|
+
position: string;
|
|
18
|
+
maxHeight: string;
|
|
19
|
+
top: string;
|
|
20
|
+
marginLeft: string;
|
|
21
|
+
translate: string;
|
|
22
|
+
boxShadow: string;
|
|
23
|
+
borderRadius: string;
|
|
24
|
+
width: string;
|
|
25
|
+
maxWidth: string;
|
|
26
|
+
backgroundColor: string;
|
|
27
|
+
padding: {
|
|
28
|
+
top: string;
|
|
29
|
+
bottom: string;
|
|
30
|
+
left: string;
|
|
31
|
+
right: string;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
dialog: {
|
|
35
|
+
container: {
|
|
36
|
+
display: string;
|
|
37
|
+
gridTemplateAreas: string;
|
|
38
|
+
gridTemplateColumns: string;
|
|
39
|
+
gridTemplateRows: string;
|
|
40
|
+
};
|
|
41
|
+
dismiss: {
|
|
42
|
+
gridArea: string;
|
|
43
|
+
marginLeft: string;
|
|
44
|
+
marginBottom: string;
|
|
45
|
+
border: string;
|
|
46
|
+
height: string;
|
|
47
|
+
width: string;
|
|
48
|
+
hovered: {
|
|
49
|
+
background: string;
|
|
50
|
+
border: string;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
title: {
|
|
54
|
+
gridArea: string;
|
|
55
|
+
marginBottom: string;
|
|
56
|
+
};
|
|
57
|
+
children: {
|
|
58
|
+
gridArea: string;
|
|
59
|
+
marginBottom: string;
|
|
60
|
+
};
|
|
61
|
+
ctas: {
|
|
62
|
+
gridArea: string;
|
|
63
|
+
display: string;
|
|
64
|
+
flexDirection: string;
|
|
65
|
+
gap: string;
|
|
66
|
+
justifyContent: string;
|
|
67
|
+
md: {
|
|
68
|
+
flexDirection: string;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
type ComponentModal = typeof componentModal;
|
|
74
|
+
//#endregion
|
|
75
|
+
export { ComponentModal, componentModal };
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
//#region src/styleD/build/typescript/component/modal.ts
|
|
2
|
+
/**
|
|
3
|
+
* Do not edit directly, this file was auto-generated.
|
|
4
|
+
*/
|
|
5
|
+
const componentModal = {
|
|
6
|
+
overlay: {
|
|
7
|
+
position: "absolute",
|
|
8
|
+
top: 0,
|
|
9
|
+
left: 0,
|
|
10
|
+
width: "100%",
|
|
11
|
+
height: "100%",
|
|
12
|
+
backgroundColor: "#00000066",
|
|
13
|
+
overflow: "clip",
|
|
14
|
+
zIndex: 100
|
|
15
|
+
},
|
|
16
|
+
modal: {
|
|
17
|
+
position: "sticky",
|
|
18
|
+
maxHeight: "90%",
|
|
19
|
+
top: "50%",
|
|
20
|
+
marginLeft: "50svw",
|
|
21
|
+
translate: "-50% -50%",
|
|
22
|
+
boxShadow: "0 2px 6px 0 rgba(0, 0, 0, 0.30)",
|
|
23
|
+
borderRadius: "0.5rem",
|
|
24
|
+
width: "max-content",
|
|
25
|
+
maxWidth: "min(484px, 90svw)",
|
|
26
|
+
backgroundColor: "#ffffff",
|
|
27
|
+
padding: {
|
|
28
|
+
top: "1rem",
|
|
29
|
+
bottom: "2rem",
|
|
30
|
+
left: "2rem",
|
|
31
|
+
right: "2rem"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
dialog: {
|
|
35
|
+
container: {
|
|
36
|
+
display: "grid",
|
|
37
|
+
gridTemplateAreas: "'dismiss' 'title' 'children' 'ctas'",
|
|
38
|
+
gridTemplateColumns: "1fr",
|
|
39
|
+
gridTemplateRows: "auto auto 1fr auto"
|
|
40
|
+
},
|
|
41
|
+
dismiss: {
|
|
42
|
+
gridArea: "dismiss",
|
|
43
|
+
marginLeft: "auto",
|
|
44
|
+
marginBottom: "1rem",
|
|
45
|
+
border: "none",
|
|
46
|
+
height: "1rem",
|
|
47
|
+
width: "1rem",
|
|
48
|
+
hovered: {
|
|
49
|
+
background: "none",
|
|
50
|
+
border: "none"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
title: {
|
|
54
|
+
gridArea: "title",
|
|
55
|
+
marginBottom: "1rem"
|
|
56
|
+
},
|
|
57
|
+
children: {
|
|
58
|
+
gridArea: "children",
|
|
59
|
+
marginBottom: "2.5rem"
|
|
60
|
+
},
|
|
61
|
+
ctas: {
|
|
62
|
+
gridArea: "ctas",
|
|
63
|
+
display: "flex",
|
|
64
|
+
flexDirection: "column",
|
|
65
|
+
gap: "1rem",
|
|
66
|
+
justifyContent: "flex-end",
|
|
67
|
+
md: { flexDirection: "row" }
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
};
|
|
71
|
+
//#endregion
|
|
72
|
+
export { componentModal };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
//#region src/styleD/build/typescript/component/tagPicker.ts
|
|
2
|
+
/**
|
|
3
|
+
* Do not edit directly, this file was auto-generated.
|
|
4
|
+
*/
|
|
5
|
+
const componentTagPicker = {
|
|
6
|
+
shared: {
|
|
7
|
+
width: "100%",
|
|
8
|
+
gap: "15px"
|
|
9
|
+
},
|
|
10
|
+
select: { flexBasis: "25%" },
|
|
11
|
+
offlineSection: {
|
|
12
|
+
justifyContent: "flex-start",
|
|
13
|
+
gap: "4px"
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
//#endregion
|
|
17
|
+
exports.componentTagPicker = componentTagPicker;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
//#region src/styleD/build/typescript/component/tagPicker.d.ts
|
|
2
|
+
/**
|
|
3
|
+
* Do not edit directly, this file was auto-generated.
|
|
4
|
+
*/
|
|
5
|
+
declare const componentTagPicker: {
|
|
6
|
+
shared: {
|
|
7
|
+
width: string;
|
|
8
|
+
gap: string;
|
|
9
|
+
};
|
|
10
|
+
select: {
|
|
11
|
+
flexBasis: string;
|
|
12
|
+
};
|
|
13
|
+
offlineSection: {
|
|
14
|
+
justifyContent: string;
|
|
15
|
+
gap: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
type ComponentTagPicker = typeof componentTagPicker;
|
|
19
|
+
//#endregion
|
|
20
|
+
export { ComponentTagPicker, componentTagPicker };
|