@dynatrace/strato-components 1.4.0 → 1.6.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/buttons/button/Button.css +18 -22
- package/buttons/button/Button.d.ts +4 -4
- package/buttons/button/Button.js +48 -34
- package/buttons/button/Button.sty.js +5 -4
- package/buttons/button/Label.d.ts +2 -2
- package/buttons/button/Label.js +7 -5
- package/buttons/button/Prefix.d.ts +2 -2
- package/buttons/button/Prefix.js +7 -15
- package/buttons/button/Suffix.d.ts +3 -3
- package/buttons/button/Suffix.js +7 -15
- package/buttons/button/types/button-aria.js +1 -0
- package/buttons/button/utils/focus-without-scrolling.js +1 -0
- package/buttons/button/utils/is-virtual-event.js +1 -0
- package/buttons/index.js +1 -0
- package/buttons/intent-button/IntentButton.d.ts +2 -2
- package/buttons/intent-button/IntentButton.js +17 -21
- package/buttons/intent-button/useIntentButton.d.ts +4 -3
- package/buttons/intent-button/useIntentButton.js +1 -0
- package/content/index.js +1 -0
- package/content/progress/ProgressBar.css +71 -71
- package/content/progress/ProgressBar.d.ts +4 -5
- package/content/progress/ProgressBar.js +50 -41
- package/content/progress/ProgressBar.sty.js +6 -5
- package/content/progress/ProgressBarIcon.css +2 -2
- package/content/progress/ProgressBarIcon.d.ts +1 -2
- package/content/progress/ProgressBarIcon.js +7 -5
- package/content/progress/ProgressBarIcon.sty.js +2 -1
- package/content/progress/ProgressBarLabel.css +3 -3
- package/content/progress/ProgressBarLabel.d.ts +1 -2
- package/content/progress/ProgressBarLabel.js +7 -5
- package/content/progress/ProgressBarLabel.sty.js +2 -1
- package/content/progress/ProgressBarValue.css +5 -5
- package/content/progress/ProgressBarValue.d.ts +1 -2
- package/content/progress/ProgressBarValue.js +7 -5
- package/content/progress/ProgressBarValue.sty.js +2 -1
- package/content/progress/ProgressCircle.css +40 -40
- package/content/progress/ProgressCircle.d.ts +1 -2
- package/content/progress/ProgressCircle.js +61 -55
- package/content/progress/ProgressCircle.sty.js +6 -5
- package/content/progress/contexts/SharedProgressBarPropsContext.d.ts +1 -2
- package/content/progress/contexts/SharedProgressBarPropsContext.js +3 -12
- package/content/progress/hooks/useProgressAriaProps.js +1 -0
- package/content/progress/hooks/useProgressBarPropsContext.js +1 -0
- package/content/skeleton/Skeleton.css +6 -6
- package/content/skeleton/Skeleton.d.ts +2 -2
- package/content/skeleton/Skeleton.js +7 -5
- package/content/skeleton/Skeleton.sty.js +2 -1
- package/content/skeleton/SkeletonText.d.ts +2 -2
- package/content/skeleton/SkeletonText.js +10 -18
- package/core/components/app-root/AppRoot.d.ts +3 -3
- package/core/components/app-root/AppRoot.js +16 -24
- package/core/components/app-root/AppRoot.sty.js +1 -0
- package/core/components/focus-scope/FocusScope.d.ts +1 -2
- package/core/components/focus-scope/FocusScope.js +7 -15
- package/core/contexts/FocusContext.js +1 -0
- package/core/hooks/useActiveElement.js +1 -0
- package/core/hooks/useAriaLabelingProps.js +1 -0
- package/core/hooks/useCurrentTheme.js +1 -0
- package/core/hooks/useFocusContext.js +1 -0
- package/core/hooks/useFontsUpdated.js +2 -1
- package/core/hooks/useId.js +1 -0
- package/core/hooks/useMergeRefs.d.ts +2 -2
- package/core/hooks/useMergeRefs.js +1 -0
- package/core/hooks/useSafeForwardProps.js +1 -0
- package/core/index.js +1 -0
- package/core/providers/FocusProvider.d.ts +1 -2
- package/core/providers/FocusProvider.js +7 -15
- package/core/styles/focusRing.css +66 -66
- package/core/styles/focusRing.sty.js +3 -2
- package/core/styles/useFocusRing.d.ts +3 -3
- package/core/styles/useFocusRing.js +1 -0
- package/core/types/a11y-props.js +1 -0
- package/core/types/data-props.js +1 -0
- package/core/types/dom.js +1 -0
- package/core/types/heading.js +1 -0
- package/core/types/masking-props.js +1 -0
- package/core/types/polymorph.d.ts +1 -1
- package/core/types/polymorph.js +1 -0
- package/core/types/styling-props.d.ts +1 -1
- package/core/types/styling-props.js +1 -0
- package/core/types/with-children.d.ts +1 -1
- package/core/types/with-children.js +1 -0
- package/core/utils/_is-string-children.d.ts +2 -2
- package/core/utils/_is-string-children.js +3 -12
- package/core/utils/colorUtils.css +60 -60
- package/core/utils/colorUtils.sty.js +3 -2
- package/core/utils/focus-management/attempt-focus.js +1 -0
- package/core/utils/focus-management/focus-first-descendant.js +1 -0
- package/core/utils/focus-management/get-first-focusable-child.js +1 -0
- package/core/utils/focus-management/get-last-focusable-child.js +1 -0
- package/core/utils/focus-management/is-focusable.js +1 -0
- package/core/utils/isBrowser.js +1 -0
- package/core/utils/merge-props.js +1 -0
- package/core/utils/parse-boolean.js +1 -0
- package/core/utils/seed-random.js +1 -0
- package/core/utils/uuidv4.js +1 -0
- package/esm/buttons/button/Button.css +18 -22
- package/esm/buttons/button/Button.js +49 -35
- package/esm/buttons/button/Button.js.map +2 -2
- package/esm/buttons/button/Button.sty.js +4 -4
- package/esm/buttons/button/Button.sty.js.map +1 -1
- package/esm/buttons/button/Label.js +6 -5
- package/esm/buttons/button/Label.js.map +2 -2
- package/esm/buttons/button/Prefix.js +6 -5
- package/esm/buttons/button/Prefix.js.map +2 -2
- package/esm/buttons/button/Suffix.js +6 -5
- package/esm/buttons/button/Suffix.js.map +2 -2
- package/esm/buttons/intent-button/IntentButton.js +16 -11
- package/esm/buttons/intent-button/IntentButton.js.map +2 -2
- package/esm/buttons/intent-button/useIntentButton.js +4 -1
- package/esm/buttons/intent-button/useIntentButton.js.map +2 -2
- package/esm/content/progress/ProgressBar.css +71 -71
- package/esm/content/progress/ProgressBar.js +53 -41
- package/esm/content/progress/ProgressBar.js.map +2 -2
- package/esm/content/progress/ProgressBar.sty.js +5 -5
- package/esm/content/progress/ProgressBar.sty.js.map +1 -1
- package/esm/content/progress/ProgressBarIcon.css +2 -2
- package/esm/content/progress/ProgressBarIcon.js +6 -5
- package/esm/content/progress/ProgressBarIcon.js.map +2 -2
- package/esm/content/progress/ProgressBarIcon.sty.js +1 -1
- package/esm/content/progress/ProgressBarIcon.sty.js.map +1 -1
- package/esm/content/progress/ProgressBarLabel.css +3 -3
- package/esm/content/progress/ProgressBarLabel.js +6 -5
- package/esm/content/progress/ProgressBarLabel.js.map +2 -2
- package/esm/content/progress/ProgressBarLabel.sty.js +1 -1
- package/esm/content/progress/ProgressBarLabel.sty.js.map +1 -1
- package/esm/content/progress/ProgressBarValue.css +5 -5
- package/esm/content/progress/ProgressBarValue.js +6 -5
- package/esm/content/progress/ProgressBarValue.js.map +2 -2
- package/esm/content/progress/ProgressBarValue.sty.js +1 -1
- package/esm/content/progress/ProgressBarValue.sty.js.map +1 -1
- package/esm/content/progress/ProgressCircle.css +40 -40
- package/esm/content/progress/ProgressCircle.js +60 -55
- package/esm/content/progress/ProgressCircle.js.map +2 -2
- package/esm/content/progress/ProgressCircle.sty.js +5 -5
- package/esm/content/progress/ProgressCircle.sty.js.map +1 -1
- package/esm/content/progress/contexts/SharedProgressBarPropsContext.js +2 -2
- package/esm/content/progress/contexts/SharedProgressBarPropsContext.js.map +2 -2
- package/esm/content/skeleton/Skeleton.css +6 -6
- package/esm/content/skeleton/Skeleton.js +6 -5
- package/esm/content/skeleton/Skeleton.js.map +2 -2
- package/esm/content/skeleton/Skeleton.sty.js +1 -1
- package/esm/content/skeleton/Skeleton.sty.js.map +1 -1
- package/esm/content/skeleton/SkeletonText.js +9 -8
- package/esm/content/skeleton/SkeletonText.js.map +2 -2
- package/esm/core/components/app-root/AppRoot.js +15 -14
- package/esm/core/components/app-root/AppRoot.js.map +2 -2
- package/esm/core/components/focus-scope/FocusScope.js +6 -5
- package/esm/core/components/focus-scope/FocusScope.js.map +2 -2
- package/esm/core/hooks/useFontsUpdated.js +1 -1
- package/esm/core/hooks/useFontsUpdated.js.map +2 -2
- package/esm/core/hooks/useMergeRefs.js +3 -1
- package/esm/core/hooks/useMergeRefs.js.map +2 -2
- package/esm/core/providers/FocusProvider.js +6 -5
- package/esm/core/providers/FocusProvider.js.map +2 -2
- package/esm/core/styles/focusRing.css +66 -66
- package/esm/core/styles/focusRing.sty.js +2 -2
- package/esm/core/styles/focusRing.sty.js.map +1 -1
- package/esm/core/styles/useFocusRing.js.map +1 -1
- package/esm/core/utils/_is-string-children.js +2 -2
- package/esm/core/utils/_is-string-children.js.map +2 -2
- package/esm/core/utils/colorUtils.css +60 -60
- package/esm/core/utils/colorUtils.sty.js +2 -2
- package/esm/core/utils/colorUtils.sty.js.map +1 -1
- package/esm/layouts/container/Container.css +4 -4
- package/esm/layouts/container/Container.js +7 -6
- package/esm/layouts/container/Container.js.map +2 -2
- package/esm/layouts/container/Container.sty.js +1 -1
- package/esm/layouts/container/Container.sty.js.map +1 -1
- package/esm/layouts/divider/Divider.css +6 -6
- package/esm/layouts/divider/Divider.js +3 -2
- package/esm/layouts/divider/Divider.js.map +2 -2
- package/esm/layouts/divider/Divider.sty.js +1 -1
- package/esm/layouts/divider/Divider.sty.js.map +1 -1
- package/esm/layouts/flex/Flex.js +6 -5
- package/esm/layouts/flex/Flex.js.map +2 -2
- package/esm/layouts/grid/Grid.js +6 -5
- package/esm/layouts/grid/Grid.js.map +2 -2
- package/esm/layouts/surface/Surface.css +39 -39
- package/esm/layouts/surface/Surface.js +17 -14
- package/esm/layouts/surface/Surface.js.map +2 -2
- package/esm/layouts/surface/Surface.sty.js +2 -2
- package/esm/layouts/surface/Surface.sty.js.map +1 -1
- package/esm/layouts/surface/variables.sty.js +1 -1
- package/esm/layouts/surface/variables.sty.js.map +1 -1
- package/esm/styles/colorUtils.css +60 -60
- package/esm/styles/colorUtils.sty.js +2 -2
- package/esm/styles/colorUtils.sty.js.map +1 -1
- package/esm/styles/container.css +47 -47
- package/esm/styles/container.sty.js +2 -2
- package/esm/styles/container.sty.js.map +1 -1
- package/esm/styles/ellipsis.css +1 -1
- package/esm/styles/ellipsis.sty.js +1 -1
- package/esm/styles/ellipsis.sty.js.map +1 -1
- package/esm/styles/field.css +153 -153
- package/esm/styles/field.sty.js +2 -2
- package/esm/styles/field.sty.js.map +1 -1
- package/esm/styles/getFlexStyles.js.map +1 -1
- package/esm/styles/getGridStyles.js.map +1 -1
- package/esm/styles/getLayoutSizeStyles.js.map +1 -1
- package/esm/styles/sprinkles.css +262 -262
- package/esm/styles/sprinkles.sty.js +1 -1
- package/esm/styles/sprinkles.sty.js.map +1 -1
- package/esm/styles/textStyle.css +8 -8
- package/esm/styles/textStyle.sty.js +1 -1
- package/esm/styles/textStyle.sty.js.map +1 -1
- package/esm/typography/block-quote/Blockquote.css +2 -2
- package/esm/typography/block-quote/Blockquote.js +6 -5
- package/esm/typography/block-quote/Blockquote.js.map +2 -2
- package/esm/typography/block-quote/Blockquote.sty.js +1 -1
- package/esm/typography/block-quote/Blockquote.sty.js.map +1 -1
- package/esm/typography/code/Code.css +1 -1
- package/esm/typography/code/Code.js +6 -5
- package/esm/typography/code/Code.js.map +2 -2
- package/esm/typography/code/Code.sty.js +1 -1
- package/esm/typography/code/Code.sty.js.map +1 -1
- package/esm/typography/emphasis/Emphasis.css +1 -1
- package/esm/typography/emphasis/Emphasis.js +6 -5
- package/esm/typography/emphasis/Emphasis.js.map +2 -2
- package/esm/typography/emphasis/Emphasis.sty.js +1 -1
- package/esm/typography/emphasis/Emphasis.sty.js.map +1 -1
- package/esm/typography/external-link/ExternalLink.css +6 -6
- package/esm/typography/external-link/ExternalLink.js +22 -16
- package/esm/typography/external-link/ExternalLink.js.map +2 -2
- package/esm/typography/external-link/ExternalLink.sty.js +1 -1
- package/esm/typography/external-link/ExternalLink.sty.js.map +1 -1
- package/esm/typography/heading/Heading.css +7 -7
- package/esm/typography/heading/Heading.js +6 -5
- package/esm/typography/heading/Heading.js.map +2 -2
- package/esm/typography/heading/Heading.sty.js +1 -1
- package/esm/typography/heading/Heading.sty.js.map +1 -1
- package/esm/typography/highlight/Highlight.css +2 -1
- package/esm/typography/highlight/Highlight.js +31 -18
- package/esm/typography/highlight/Highlight.js.map +3 -3
- package/esm/typography/highlight/Highlight.sty.js +1 -1
- package/esm/typography/highlight/Highlight.sty.js.map +1 -1
- package/esm/typography/link/Link.css +4 -4
- package/esm/typography/link/Link.js +6 -5
- package/esm/typography/link/Link.js.map +2 -2
- package/esm/typography/link/Link.sty.js +1 -1
- package/esm/typography/link/Link.sty.js.map +1 -1
- package/esm/typography/list/List.css +4 -4
- package/esm/typography/list/List.js +14 -9
- package/esm/typography/list/List.js.map +2 -2
- package/esm/typography/list/List.sty.js +2 -2
- package/esm/typography/list/List.sty.js.map +1 -1
- package/esm/typography/paragraph/Paragraph.css +3 -3
- package/esm/typography/paragraph/Paragraph.js +6 -5
- package/esm/typography/paragraph/Paragraph.js.map +2 -2
- package/esm/typography/paragraph/Paragraph.sty.js +1 -1
- package/esm/typography/paragraph/Paragraph.sty.js.map +1 -1
- package/esm/typography/strikethrough/Strikethrough.css +1 -1
- package/esm/typography/strikethrough/Strikethrough.js +6 -5
- package/esm/typography/strikethrough/Strikethrough.js.map +2 -2
- package/esm/typography/strikethrough/Strikethrough.sty.js +1 -1
- package/esm/typography/strikethrough/Strikethrough.sty.js.map +1 -1
- package/esm/typography/strong/Strong.css +1 -1
- package/esm/typography/strong/Strong.js +6 -5
- package/esm/typography/strong/Strong.js.map +2 -2
- package/esm/typography/strong/Strong.sty.js +1 -1
- package/esm/typography/strong/Strong.sty.js.map +1 -1
- package/esm/typography/text/Text.css +3 -3
- package/esm/typography/text/Text.js +6 -5
- package/esm/typography/text/Text.js.map +2 -2
- package/esm/typography/text/Text.sty.js +1 -1
- package/esm/typography/text/Text.sty.js.map +1 -1
- package/esm/typography/text-ellipsis/TextEllipsis.css +8 -5
- package/esm/typography/text-ellipsis/TextEllipsis.js +16 -15
- package/esm/typography/text-ellipsis/TextEllipsis.js.map +2 -2
- package/esm/typography/text-ellipsis/TextEllipsis.sty.js +4 -4
- package/esm/typography/text-ellipsis/TextEllipsis.sty.js.map +2 -2
- package/index.js +1 -0
- package/layouts/container/Container.css +4 -4
- package/layouts/container/Container.js +8 -6
- package/layouts/container/Container.sty.js +2 -1
- package/layouts/divider/Divider.css +6 -6
- package/layouts/divider/Divider.d.ts +1 -2
- package/layouts/divider/Divider.js +4 -2
- package/layouts/divider/Divider.sty.js +2 -1
- package/layouts/flex/Flex.js +7 -5
- package/layouts/grid/Grid.d.ts +1 -1
- package/layouts/grid/Grid.js +7 -5
- package/layouts/helpers/spacingToCss.js +1 -0
- package/layouts/hooks/useBreakpoint.js +1 -0
- package/layouts/hooks/useLayoutSizeProps.js +1 -0
- package/layouts/hooks/useLayoutStyles.js +1 -0
- package/layouts/hooks/useMarginProps.js +1 -0
- package/layouts/hooks/usePaddingProps.js +1 -0
- package/layouts/index.js +1 -0
- package/layouts/surface/Surface.css +39 -39
- package/layouts/surface/Surface.js +18 -14
- package/layouts/surface/Surface.sty.js +3 -2
- package/layouts/surface/variables.sty.js +2 -1
- package/layouts/types/layout.types.d.ts +1 -1
- package/layouts/types/layout.types.js +1 -0
- package/package.json +5 -5
- package/styles/colorUtils.css +60 -60
- package/styles/colorUtils.sty.js +3 -2
- package/styles/container.css +47 -47
- package/styles/container.sty.js +3 -2
- package/styles/ellipsis.css +1 -1
- package/styles/ellipsis.sty.js +2 -1
- package/styles/extract-util.js +1 -0
- package/styles/field.css +153 -153
- package/styles/field.sty.js +3 -2
- package/styles/getFlexStyles.d.ts +17 -17
- package/styles/getFlexStyles.js +1 -0
- package/styles/getGapSprinkles.js +1 -0
- package/styles/getGridFlexPositionSprinkles.js +1 -0
- package/styles/getGridStyles.d.ts +22 -22
- package/styles/getGridStyles.js +1 -0
- package/styles/getLayoutSizeStyles.d.ts +1 -1
- package/styles/getLayoutSizeStyles.js +1 -0
- package/styles/getSpacingSprinkles.js +1 -0
- package/styles/index.js +1 -0
- package/styles/safe-sprinkles.js +1 -0
- package/styles/sprinkle-properties.js +1 -0
- package/styles/sprinkles.css +262 -262
- package/styles/sprinkles.sty.js +2 -1
- package/styles/textStyle.css +8 -8
- package/styles/textStyle.sty.js +2 -1
- package/typography/block-quote/Blockquote.css +2 -2
- package/typography/block-quote/Blockquote.d.ts +1 -2
- package/typography/block-quote/Blockquote.js +7 -5
- package/typography/block-quote/Blockquote.sty.js +2 -1
- package/typography/code/Code.css +1 -1
- package/typography/code/Code.d.ts +1 -2
- package/typography/code/Code.js +7 -5
- package/typography/code/Code.sty.js +2 -1
- package/typography/emphasis/Emphasis.css +1 -1
- package/typography/emphasis/Emphasis.d.ts +1 -2
- package/typography/emphasis/Emphasis.js +7 -5
- package/typography/emphasis/Emphasis.sty.js +2 -1
- package/typography/external-link/ExternalLink.css +6 -6
- package/typography/external-link/ExternalLink.d.ts +2 -2
- package/typography/external-link/ExternalLink.js +23 -16
- package/typography/external-link/ExternalLink.sty.js +2 -1
- package/typography/heading/Heading.css +7 -7
- package/typography/heading/Heading.d.ts +1 -2
- package/typography/heading/Heading.js +7 -5
- package/typography/heading/Heading.sty.js +2 -1
- package/typography/highlight/Highlight.css +2 -1
- package/typography/highlight/Highlight.d.ts +1 -1
- package/typography/highlight/Highlight.js +22 -17
- package/typography/highlight/Highlight.sty.js +2 -1
- package/typography/index.js +1 -0
- package/typography/link/Link.css +4 -4
- package/typography/link/Link.d.ts +1 -1
- package/typography/link/Link.js +7 -5
- package/typography/link/Link.sty.js +2 -1
- package/typography/list/List.css +4 -4
- package/typography/list/List.d.ts +1 -2
- package/typography/list/List.js +11 -9
- package/typography/list/List.sty.js +3 -2
- package/typography/paragraph/Paragraph.css +3 -3
- package/typography/paragraph/Paragraph.d.ts +1 -2
- package/typography/paragraph/Paragraph.js +7 -5
- package/typography/paragraph/Paragraph.sty.js +2 -1
- package/typography/strikethrough/Strikethrough.css +1 -1
- package/typography/strikethrough/Strikethrough.d.ts +1 -2
- package/typography/strikethrough/Strikethrough.js +7 -5
- package/typography/strikethrough/Strikethrough.sty.js +2 -1
- package/typography/strong/Strong.css +1 -1
- package/typography/strong/Strong.d.ts +1 -2
- package/typography/strong/Strong.js +7 -5
- package/typography/strong/Strong.sty.js +2 -1
- package/typography/text/Text.css +3 -3
- package/typography/text/Text.js +7 -5
- package/typography/text/Text.sty.js +2 -1
- package/typography/text-ellipsis/TextEllipsis.css +8 -5
- package/typography/text-ellipsis/TextEllipsis.d.ts +2 -2
- package/typography/text-ellipsis/TextEllipsis.js +17 -15
- package/typography/text-ellipsis/TextEllipsis.sty.d.ts +7 -2
- package/typography/text-ellipsis/TextEllipsis.sty.js +5 -4
- package/typography/utils.js +1 -0
package/styles/container.css
CHANGED
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
._6levse4-1-
|
|
2
|
-
--_6levse0-1-
|
|
3
|
-
--_6levse1-1-
|
|
4
|
-
--_6levse2-1-
|
|
1
|
+
._6levse4-1-6-0 {
|
|
2
|
+
--_6levse0-1-6-0: var(--dt-colors-text-critical-default, #b80031);
|
|
3
|
+
--_6levse1-1-6-0: var(--dt-colors-background-container-critical-default, #f3eaed);
|
|
4
|
+
--_6levse2-1-6-0: var(--dt-colors-border-critical-default, #f1cdcf);
|
|
5
5
|
}
|
|
6
|
-
._6levse5-1-
|
|
7
|
-
--_6levse0-1-
|
|
8
|
-
--_6levse1-1-
|
|
9
|
-
--_6levse2-1-
|
|
6
|
+
._6levse5-1-6-0 {
|
|
7
|
+
--_6levse0-1-6-0: var(--dt-colors-text-neutral-default, #2b2a58);
|
|
8
|
+
--_6levse1-1-6-0: var(--dt-colors-background-container-neutral-default, #ebebf2);
|
|
9
|
+
--_6levse2-1-6-0: var(--dt-colors-border-neutral-default, #d2d3e1);
|
|
10
10
|
}
|
|
11
|
-
._6levse6-1-
|
|
12
|
-
--_6levse0-1-
|
|
13
|
-
--_6levse1-1-
|
|
14
|
-
--_6levse2-1-
|
|
11
|
+
._6levse6-1-6-0 {
|
|
12
|
+
--_6levse0-1-6-0: var(--dt-colors-text-primary-default, #454cc9);
|
|
13
|
+
--_6levse1-1-6-0: var(--dt-colors-background-container-primary-default, #e9ebf6);
|
|
14
|
+
--_6levse2-1-6-0: var(--dt-colors-border-primary-default, #ccd3f3);
|
|
15
15
|
}
|
|
16
|
-
._6levse7-1-
|
|
17
|
-
--_6levse0-1-
|
|
18
|
-
--_6levse1-1-
|
|
19
|
-
--_6levse2-1-
|
|
16
|
+
._6levse7-1-6-0 {
|
|
17
|
+
--_6levse0-1-6-0: var(--dt-colors-text-success-default, #2c6360);
|
|
18
|
+
--_6levse1-1-6-0: var(--dt-colors-background-container-success-default, #e9ecef);
|
|
19
|
+
--_6levse2-1-6-0: var(--dt-colors-border-success-default, #cad6d7);
|
|
20
20
|
}
|
|
21
|
-
._6levse8-1-
|
|
22
|
-
--_6levse0-1-
|
|
23
|
-
--_6levse1-1-
|
|
24
|
-
--_6levse2-1-
|
|
21
|
+
._6levse8-1-6-0 {
|
|
22
|
+
--_6levse0-1-6-0: var(--dt-colors-text-warning-default, #805100);
|
|
23
|
+
--_6levse1-1-6-0: var(--dt-colors-background-container-warning-default, #f3efef);
|
|
24
|
+
--_6levse2-1-6-0: var(--dt-colors-border-warning-default, #f4e5d5);
|
|
25
25
|
}
|
|
26
|
-
._6levse9-1-
|
|
27
|
-
--_6levse1-1-
|
|
26
|
+
._6levse9-1-6-0 {
|
|
27
|
+
--_6levse1-1-6-0: transparent;
|
|
28
28
|
background-color: unset;
|
|
29
29
|
}
|
|
30
|
-
._6levsed-1-
|
|
31
|
-
--_6levse0-1-
|
|
32
|
-
--_6levse1-1-
|
|
30
|
+
._6levsed-1-6-0 {
|
|
31
|
+
--_6levse0-1-6-0: var(--dt-colors-text-primary-on-accent-default, #f4f4fb);
|
|
32
|
+
--_6levse1-1-6-0: var(--dt-colors-background-container-primary-accent, #474ecf);
|
|
33
33
|
}
|
|
34
|
-
._6levsee-1-
|
|
35
|
-
--_6levse0-1-
|
|
36
|
-
--_6levse1-1-
|
|
34
|
+
._6levsee-1-6-0 {
|
|
35
|
+
--_6levse0-1-6-0: var(--dt-colors-text-success-on-accent-default, #f1f4f4);
|
|
36
|
+
--_6levse1-1-6-0: var(--dt-colors-background-container-success-accent, #2f6863);
|
|
37
37
|
}
|
|
38
|
-
._6levsef-1-
|
|
39
|
-
--_6levse0-1-
|
|
40
|
-
--_6levse1-1-
|
|
38
|
+
._6levsef-1-6-0 {
|
|
39
|
+
--_6levse0-1-6-0: var(--dt-colors-text-warning-on-accent-default, #272025);
|
|
40
|
+
--_6levse1-1-6-0: var(--dt-colors-background-container-warning-accent, #eca440);
|
|
41
41
|
}
|
|
42
|
-
._6levseg-1-
|
|
43
|
-
--_6levse0-1-
|
|
44
|
-
--_6levse1-1-
|
|
42
|
+
._6levseg-1-6-0 {
|
|
43
|
+
--_6levse0-1-6-0: var(--dt-colors-text-critical-on-accent-default, #f9f1f3);
|
|
44
|
+
--_6levse1-1-6-0: var(--dt-colors-background-container-critical-accent, #c4233b);
|
|
45
45
|
}
|
|
46
|
-
._6levseh-1-
|
|
47
|
-
--_6levse0-1-
|
|
48
|
-
--_6levse1-1-
|
|
46
|
+
._6levseh-1-6-0 {
|
|
47
|
+
--_6levse0-1-6-0: var(--dt-colors-text-neutral-on-accent-default, #f3f3f6);
|
|
48
|
+
--_6levse1-1-6-0: var(--dt-colors-background-container-neutral-accent, #5a5b8c);
|
|
49
49
|
}
|
|
50
|
-
._6levsei-1-
|
|
51
|
-
--_6levse1-1-
|
|
50
|
+
._6levsei-1-6-0 {
|
|
51
|
+
--_6levse1-1-6-0: var(--dt-colors-background-container-primary-emphasized, #dfe3f5);
|
|
52
52
|
}
|
|
53
|
-
._6levsej-1-
|
|
54
|
-
--_6levse1-1-
|
|
53
|
+
._6levsej-1-6-0 {
|
|
54
|
+
--_6levse1-1-6-0: var(--dt-colors-background-container-success-emphasized, #dfe4e7);
|
|
55
55
|
}
|
|
56
|
-
._6levsek-1-
|
|
57
|
-
--_6levse1-1-
|
|
56
|
+
._6levsek-1-6-0 {
|
|
57
|
+
--_6levse1-1-6-0: var(--dt-colors-background-container-warning-emphasized, #f4ece6);
|
|
58
58
|
}
|
|
59
|
-
._6levsel-1-
|
|
60
|
-
--_6levse1-1-
|
|
59
|
+
._6levsel-1-6-0 {
|
|
60
|
+
--_6levse1-1-6-0: var(--dt-colors-background-container-critical-emphasized, #f3e0e3);
|
|
61
61
|
}
|
|
62
|
-
._6levsem-1-
|
|
63
|
-
--_6levse1-1-
|
|
62
|
+
._6levsem-1-6-0 {
|
|
63
|
+
--_6levse1-1-6-0: var(--dt-colors-background-container-neutral-emphasized, #e2e3ec);
|
|
64
64
|
}
|
package/styles/container.sty.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __defProp = Object.defineProperty;
|
|
2
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
@@ -23,5 +24,5 @@ __export(container_css_exports, {
|
|
|
23
24
|
module.exports = __toCommonJS(container_css_exports);
|
|
24
25
|
var import_container_css_ts_vanilla = require("./container.css");
|
|
25
26
|
var import_createRuntimeFn = require("@vanilla-extract/recipes/createRuntimeFn");
|
|
26
|
-
var containerColorVars = { text: "var(--_6levse0-1-
|
|
27
|
-
var containerColorsCSS = (0, import_createRuntimeFn.createRuntimeFn)({ defaultClassName: "_6levse3-1-
|
|
27
|
+
var containerColorVars = { text: "var(--_6levse0-1-6-0)", background: "var(--_6levse1-1-6-0)", borderColor: "var(--_6levse2-1-6-0)" };
|
|
28
|
+
var containerColorsCSS = (0, import_createRuntimeFn.createRuntimeFn)({ defaultClassName: "_6levse3-1-6-0", variantClassNames: { color: { critical: "_6levse4-1-6-0", neutral: "_6levse5-1-6-0", primary: "_6levse6-1-6-0", success: "_6levse7-1-6-0", warning: "_6levse8-1-6-0" }, variant: { minimal: "_6levse9-1-6-0", "default": "_6levsea-1-6-0", emphasized: "_6levseb-1-6-0", accent: "_6levsec-1-6-0" } }, defaultVariants: {}, compoundVariants: [[{ color: "primary", variant: "accent" }, "_6levsed-1-6-0"], [{ color: "success", variant: "accent" }, "_6levsee-1-6-0"], [{ color: "warning", variant: "accent" }, "_6levsef-1-6-0"], [{ color: "critical", variant: "accent" }, "_6levseg-1-6-0"], [{ color: "neutral", variant: "accent" }, "_6levseh-1-6-0"], [{ color: "primary", variant: "emphasized" }, "_6levsei-1-6-0"], [{ color: "success", variant: "emphasized" }, "_6levsej-1-6-0"], [{ color: "warning", variant: "emphasized" }, "_6levsek-1-6-0"], [{ color: "critical", variant: "emphasized" }, "_6levsel-1-6-0"], [{ color: "neutral", variant: "emphasized" }, "_6levsem-1-6-0"]] });
|
package/styles/ellipsis.css
CHANGED
package/styles/ellipsis.sty.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __defProp = Object.defineProperty;
|
|
2
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
@@ -21,4 +22,4 @@ __export(ellipsis_css_exports, {
|
|
|
21
22
|
});
|
|
22
23
|
module.exports = __toCommonJS(ellipsis_css_exports);
|
|
23
24
|
var import_ellipsis_css_ts_vanilla = require("./ellipsis.css");
|
|
24
|
-
var ellipsisCSS = "_oqqp1n0-1-
|
|
25
|
+
var ellipsisCSS = "_oqqp1n0-1-6-0";
|
package/styles/extract-util.js
CHANGED
package/styles/field.css
CHANGED
|
@@ -1,208 +1,208 @@
|
|
|
1
|
-
._bx32h6-1-
|
|
2
|
-
--_bx32h0-1-
|
|
3
|
-
--_bx32h1-1-
|
|
1
|
+
._bx32h6-1-6-0 {
|
|
2
|
+
--_bx32h0-1-6-0: var(--dt-colors-text-primary-default, #454cc9);
|
|
3
|
+
--_bx32h1-1-6-0: var(--dt-colors-icon-primary-default, #454cc9);
|
|
4
4
|
}
|
|
5
|
-
._bx32h6-1-
|
|
6
|
-
--_bx32h3-1-
|
|
5
|
+
._bx32h6-1-6-0:hover {
|
|
6
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-primary-default-hover, #ccd3f3);
|
|
7
7
|
}
|
|
8
|
-
._bx32h6-1-
|
|
9
|
-
--_bx32h3-1-
|
|
8
|
+
._bx32h6-1-6-0:active {
|
|
9
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-primary-default-active, #c3cbf1);
|
|
10
10
|
}
|
|
11
|
-
._bx32h7-1-
|
|
12
|
-
--_bx32h0-1-
|
|
13
|
-
--_bx32h1-1-
|
|
11
|
+
._bx32h7-1-6-0 {
|
|
12
|
+
--_bx32h0-1-6-0: var(--dt-colors-text-neutral-default, #2b2a58);
|
|
13
|
+
--_bx32h1-1-6-0: var(--dt-colors-icon-neutral-default, #2b2a58);
|
|
14
14
|
}
|
|
15
|
-
._bx32h7-1-
|
|
16
|
-
--_bx32h3-1-
|
|
15
|
+
._bx32h7-1-6-0:hover {
|
|
16
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-neutral-default-hover, #d2d3e1);
|
|
17
17
|
}
|
|
18
|
-
._bx32h7-1-
|
|
19
|
-
--_bx32h3-1-
|
|
18
|
+
._bx32h7-1-6-0:active {
|
|
19
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-neutral-default-active, #cacbdc);
|
|
20
20
|
}
|
|
21
|
-
._bx32h8-1-
|
|
22
|
-
--_bx32h0-1-
|
|
23
|
-
--_bx32h1-1-
|
|
21
|
+
._bx32h8-1-6-0 {
|
|
22
|
+
--_bx32h0-1-6-0: var(--dt-colors-text-success-default, #2c6360);
|
|
23
|
+
--_bx32h1-1-6-0: var(--dt-colors-icon-success-default, #2c6360);
|
|
24
24
|
}
|
|
25
|
-
._bx32h8-1-
|
|
26
|
-
--_bx32h3-1-
|
|
25
|
+
._bx32h8-1-6-0:hover {
|
|
26
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-success-default-hover, #cad6d7);
|
|
27
27
|
}
|
|
28
|
-
._bx32h8-1-
|
|
29
|
-
--_bx32h3-1-
|
|
28
|
+
._bx32h8-1-6-0:active {
|
|
29
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-success-default-active, #c0cfcf);
|
|
30
30
|
}
|
|
31
|
-
._bx32h9-1-
|
|
32
|
-
--_bx32h0-1-
|
|
33
|
-
--_bx32h1-1-
|
|
31
|
+
._bx32h9-1-6-0 {
|
|
32
|
+
--_bx32h0-1-6-0: var(--dt-colors-text-critical-default, #b80031);
|
|
33
|
+
--_bx32h1-1-6-0: var(--dt-colors-icon-critical-default, #b80031);
|
|
34
34
|
}
|
|
35
|
-
._bx32h9-1-
|
|
36
|
-
--_bx32h3-1-
|
|
35
|
+
._bx32h9-1-6-0:hover {
|
|
36
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-critical-default-hover, #f1cdcf);
|
|
37
37
|
}
|
|
38
|
-
._bx32h9-1-
|
|
39
|
-
--_bx32h3-1-
|
|
38
|
+
._bx32h9-1-6-0:active {
|
|
39
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-critical-default-active, #f0c4c5);
|
|
40
40
|
}
|
|
41
|
-
._bx32ha-1-
|
|
42
|
-
--_bx32h0-1-
|
|
43
|
-
--_bx32h1-1-
|
|
41
|
+
._bx32ha-1-6-0 {
|
|
42
|
+
--_bx32h0-1-6-0: var(--dt-colors-text-warning-default, #805100);
|
|
43
|
+
--_bx32h1-1-6-0: var(--dt-colors-icon-warning-default, #805100);
|
|
44
44
|
}
|
|
45
|
-
._bx32ha-1-
|
|
46
|
-
--_bx32h3-1-
|
|
45
|
+
._bx32ha-1-6-0:hover {
|
|
46
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-warning-default-hover, #f4e5d5);
|
|
47
47
|
}
|
|
48
|
-
._bx32ha-1-
|
|
49
|
-
--_bx32h3-1-
|
|
48
|
+
._bx32ha-1-6-0:active {
|
|
49
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-warning-default-active, #f5e1cd);
|
|
50
50
|
}
|
|
51
|
-
._bx32hb-1-
|
|
52
|
-
--_bx32h3-1-
|
|
53
|
-
--_bx32h2-1-
|
|
51
|
+
._bx32hb-1-6-0 {
|
|
52
|
+
--_bx32h3-1-6-0: transparent;
|
|
53
|
+
--_bx32h2-1-6-0: transparent;
|
|
54
54
|
}
|
|
55
|
-
._bx32hd-1-
|
|
56
|
-
--_bx32h0-1-
|
|
57
|
-
--_bx32h1-1-
|
|
55
|
+
._bx32hd-1-6-0 {
|
|
56
|
+
--_bx32h0-1-6-0: var(--dt-colors-text-neutral-on-accent-default, #f3f3f6);
|
|
57
|
+
--_bx32h1-1-6-0: var(--dt-colors-icon-neutral-on-accent-default, #f3f3f6);
|
|
58
58
|
}
|
|
59
|
-
._bx32he-1-
|
|
60
|
-
--_bx32h3-1-
|
|
61
|
-
--_bx32h2-1-
|
|
59
|
+
._bx32he-1-6-0 {
|
|
60
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-primary-emphasized, #d6dbf4);
|
|
61
|
+
--_bx32h2-1-6-0: var(--dt-colors-background-field-primary-emphasized, #d6dbf4);
|
|
62
62
|
}
|
|
63
|
-
._bx32hf-1-
|
|
64
|
-
--_bx32h0-1-
|
|
65
|
-
--_bx32h1-1-
|
|
66
|
-
--_bx32h3-1-
|
|
67
|
-
--_bx32h2-1-
|
|
63
|
+
._bx32hf-1-6-0 {
|
|
64
|
+
--_bx32h0-1-6-0: var(--dt-colors-text-primary-on-accent-default, #f4f4fb);
|
|
65
|
+
--_bx32h1-1-6-0: var(--dt-colors-icon-primary-on-accent-default, #f4f4fb);
|
|
66
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-primary-accent, #474ecf);
|
|
67
|
+
--_bx32h2-1-6-0: var(--dt-colors-background-field-primary-accent, #474ecf);
|
|
68
68
|
}
|
|
69
|
-
._bx32hf-1-
|
|
70
|
-
--_bx32h3-1-
|
|
69
|
+
._bx32hf-1-6-0:hover {
|
|
70
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-primary-accent-hover, #3b3ebe);
|
|
71
71
|
}
|
|
72
|
-
._bx32hf-1-
|
|
73
|
-
--_bx32h3-1-
|
|
72
|
+
._bx32hf-1-6-0:active {
|
|
73
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-primary-accent-active, #312cad);
|
|
74
74
|
}
|
|
75
|
-
._bx32hg-1-
|
|
76
|
-
--_bx32h3-1-
|
|
77
|
-
--_bx32h2-1-
|
|
75
|
+
._bx32hg-1-6-0 {
|
|
76
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-neutral-emphasized, #dadbe7);
|
|
77
|
+
--_bx32h2-1-6-0: var(--dt-colors-background-field-neutral-emphasized, #dadbe7);
|
|
78
78
|
}
|
|
79
|
-
._bx32hh-1-
|
|
80
|
-
--_bx32h0-1-
|
|
81
|
-
--_bx32h1-1-
|
|
82
|
-
--_bx32h3-1-
|
|
83
|
-
--_bx32h2-1-
|
|
79
|
+
._bx32hh-1-6-0 {
|
|
80
|
+
--_bx32h0-1-6-0: var(--dt-colors-text-neutral-on-accent-default, #f3f3f6);
|
|
81
|
+
--_bx32h1-1-6-0: var(--dt-colors-icon-neutral-on-accent-default, #f3f3f6);
|
|
82
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-neutral-accent, #5a5b8c);
|
|
83
|
+
--_bx32h2-1-6-0: var(--dt-colors-background-field-neutral-accent, #5a5b8c);
|
|
84
84
|
}
|
|
85
|
-
._bx32hh-1-
|
|
86
|
-
--_bx32h3-1-
|
|
85
|
+
._bx32hh-1-6-0:hover {
|
|
86
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-neutral-accent-hover, #4c4d7d);
|
|
87
87
|
}
|
|
88
|
-
._bx32hh-1-
|
|
89
|
-
--_bx32h3-1-
|
|
88
|
+
._bx32hh-1-6-0:active {
|
|
89
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-neutral-accent-active, #3f3f6e);
|
|
90
90
|
}
|
|
91
|
-
._bx32hi-1-
|
|
92
|
-
--_bx32h3-1-
|
|
93
|
-
--_bx32h2-1-
|
|
91
|
+
._bx32hi-1-6-0 {
|
|
92
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-success-emphasized, #d4dddf);
|
|
93
|
+
--_bx32h2-1-6-0: var(--dt-colors-background-field-success-emphasized, #d4dddf);
|
|
94
94
|
}
|
|
95
|
-
._bx32hj-1-
|
|
96
|
-
--_bx32h3-1-
|
|
97
|
-
--_bx32h2-1-
|
|
95
|
+
._bx32hj-1-6-0 {
|
|
96
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-success-accent, #2f6863);
|
|
97
|
+
--_bx32h2-1-6-0: var(--dt-colors-background-field-success-accent, #2f6863);
|
|
98
98
|
}
|
|
99
|
-
._bx32hj-1-
|
|
100
|
-
--_bx32h3-1-
|
|
99
|
+
._bx32hj-1-6-0:hover {
|
|
100
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-success-accent-hover, #1f5a55);
|
|
101
101
|
}
|
|
102
|
-
._bx32hj-1-
|
|
103
|
-
--_bx32h3-1-
|
|
102
|
+
._bx32hj-1-6-0:active {
|
|
103
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-success-accent-active, #0d4c47);
|
|
104
104
|
}
|
|
105
|
-
._bx32hk-1-
|
|
106
|
-
--_bx32h3-1-
|
|
107
|
-
--_bx32h2-1-
|
|
105
|
+
._bx32hk-1-6-0 {
|
|
106
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-critical-emphasized, #f2d7d9);
|
|
107
|
+
--_bx32h2-1-6-0: var(--dt-colors-background-field-critical-emphasized, #f2d7d9);
|
|
108
108
|
}
|
|
109
|
-
._bx32hl-1-
|
|
110
|
-
--_bx32h3-1-
|
|
111
|
-
--_bx32h2-1-
|
|
112
|
-
--_bx32h0-1-
|
|
113
|
-
--_bx32h1-1-
|
|
109
|
+
._bx32hl-1-6-0 {
|
|
110
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-critical-accent, #c4233b);
|
|
111
|
+
--_bx32h2-1-6-0: var(--dt-colors-background-field-critical-accent, #c4233b);
|
|
112
|
+
--_bx32h0-1-6-0: var(--dt-colors-text-critical-on-accent-default, #f9f1f3);
|
|
113
|
+
--_bx32h1-1-6-0: var(--dt-colors-icon-critical-on-accent-default, #f9f1f3);
|
|
114
114
|
}
|
|
115
|
-
._bx32hl-1-
|
|
116
|
-
--_bx32h3-1-
|
|
115
|
+
._bx32hl-1-6-0:hover {
|
|
116
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-critical-accent-hover, #b2012d);
|
|
117
117
|
}
|
|
118
|
-
._bx32hl-1-
|
|
119
|
-
--_bx32h3-1-
|
|
118
|
+
._bx32hl-1-6-0:active {
|
|
119
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-critical-accent-active, #a0001f);
|
|
120
120
|
}
|
|
121
|
-
._bx32hm-1-
|
|
122
|
-
--_bx32h3-1-
|
|
123
|
-
--_bx32h2-1-
|
|
121
|
+
._bx32hm-1-6-0 {
|
|
122
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-warning-emphasized, #f4e8de);
|
|
123
|
+
--_bx32h2-1-6-0: var(--dt-colors-background-field-warning-emphasized, #f4e8de);
|
|
124
124
|
}
|
|
125
|
-
._bx32hn-1-
|
|
126
|
-
--_bx32h0-1-
|
|
127
|
-
--_bx32h1-1-
|
|
128
|
-
--_bx32h3-1-
|
|
129
|
-
--_bx32h2-1-
|
|
125
|
+
._bx32hn-1-6-0 {
|
|
126
|
+
--_bx32h0-1-6-0: var(--dt-colors-text-warning-on-accent-default, #272025);
|
|
127
|
+
--_bx32h1-1-6-0: var(--dt-colors-icon-warning-on-accent-default, #272025);
|
|
128
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-warning-accent, #eca440);
|
|
129
|
+
--_bx32h2-1-6-0: var(--dt-colors-background-field-warning-accent, #eca440);
|
|
130
130
|
}
|
|
131
|
-
._bx32hn-1-
|
|
132
|
-
--_bx32h3-1-
|
|
131
|
+
._bx32hn-1-6-0:hover {
|
|
132
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-warning-accent-hover, #fdb452);
|
|
133
133
|
}
|
|
134
|
-
._bx32hn-1-
|
|
135
|
-
--_bx32h3-1-
|
|
134
|
+
._bx32hn-1-6-0:active {
|
|
135
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-warning-accent-active, #ffc56a);
|
|
136
136
|
}
|
|
137
|
-
._bx32ho-1-
|
|
138
|
-
--_bx32h0-1-
|
|
139
|
-
--_bx32h1-1-
|
|
140
|
-
--_bx32h3-1-
|
|
141
|
-
--_bx32h2-1-
|
|
137
|
+
._bx32ho-1-6-0 {
|
|
138
|
+
--_bx32h0-1-6-0: var(--dt-colors-text-neutral-disabled, #54558780);
|
|
139
|
+
--_bx32h1-1-6-0: var(--dt-colors-icon-neutral-disabled, #54558780);
|
|
140
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-neutral-disabled, #dadbe780);
|
|
141
|
+
--_bx32h2-1-6-0: var(--dt-colors-background-field-neutral-disabled, #dadbe780);
|
|
142
142
|
}
|
|
143
|
-
._bx32ho-1-
|
|
144
|
-
--_bx32h3-1-
|
|
143
|
+
._bx32ho-1-6-0:hover {
|
|
144
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-neutral-disabled, #dadbe780);
|
|
145
145
|
}
|
|
146
|
-
._bx32ho-1-
|
|
147
|
-
--_bx32h3-1-
|
|
146
|
+
._bx32ho-1-6-0:active {
|
|
147
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-neutral-disabled, #dadbe780);
|
|
148
148
|
}
|
|
149
|
-
._bx32hp-1-
|
|
150
|
-
--_bx32h0-1-
|
|
151
|
-
--_bx32h1-1-
|
|
152
|
-
--_bx32h3-1-
|
|
153
|
-
--_bx32h2-1-
|
|
149
|
+
._bx32hp-1-6-0 {
|
|
150
|
+
--_bx32h0-1-6-0: var(--dt-colors-text-primary-disabled, #54558780);
|
|
151
|
+
--_bx32h1-1-6-0: var(--dt-colors-icon-primary-disabled, #54558780);
|
|
152
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-primary-disabled, #dadbe780);
|
|
153
|
+
--_bx32h2-1-6-0: var(--dt-colors-background-field-primary-disabled, #dadbe780);
|
|
154
154
|
}
|
|
155
|
-
._bx32hp-1-
|
|
156
|
-
--_bx32h3-1-
|
|
155
|
+
._bx32hp-1-6-0:hover {
|
|
156
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-primary-disabled, #dadbe780);
|
|
157
157
|
}
|
|
158
|
-
._bx32hp-1-
|
|
159
|
-
--_bx32h3-1-
|
|
158
|
+
._bx32hp-1-6-0:active {
|
|
159
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-primary-disabled, #dadbe780);
|
|
160
160
|
}
|
|
161
|
-
._bx32hq-1-
|
|
162
|
-
--_bx32h0-1-
|
|
163
|
-
--_bx32h1-1-
|
|
164
|
-
--_bx32h3-1-
|
|
165
|
-
--_bx32h2-1-
|
|
161
|
+
._bx32hq-1-6-0 {
|
|
162
|
+
--_bx32h0-1-6-0: var(--dt-colors-text-warning-disabled, #54558780);
|
|
163
|
+
--_bx32h1-1-6-0: var(--dt-colors-icon-warning-disabled, #54558780);
|
|
164
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-warning-disabled, #dadbe780);
|
|
165
|
+
--_bx32h2-1-6-0: var(--dt-colors-background-field-warning-disabled, #dadbe780);
|
|
166
166
|
}
|
|
167
|
-
._bx32hq-1-
|
|
168
|
-
--_bx32h3-1-
|
|
167
|
+
._bx32hq-1-6-0:hover {
|
|
168
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-warning-disabled, #dadbe780);
|
|
169
169
|
}
|
|
170
|
-
._bx32hq-1-
|
|
171
|
-
--_bx32h3-1-
|
|
170
|
+
._bx32hq-1-6-0:active {
|
|
171
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-warning-disabled, #dadbe780);
|
|
172
172
|
}
|
|
173
|
-
._bx32hr-1-
|
|
174
|
-
--_bx32h0-1-
|
|
175
|
-
--_bx32h1-1-
|
|
176
|
-
--_bx32h3-1-
|
|
177
|
-
--_bx32h2-1-
|
|
173
|
+
._bx32hr-1-6-0 {
|
|
174
|
+
--_bx32h0-1-6-0: var(--dt-colors-text-success-disabled, #54558780);
|
|
175
|
+
--_bx32h1-1-6-0: var(--dt-colors-icon-success-disabled, #54558780);
|
|
176
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-success-disabled, #dadbe780);
|
|
177
|
+
--_bx32h2-1-6-0: var(--dt-colors-background-field-success-disabled, #dadbe780);
|
|
178
178
|
}
|
|
179
|
-
._bx32hr-1-
|
|
180
|
-
--_bx32h3-1-
|
|
179
|
+
._bx32hr-1-6-0:hover {
|
|
180
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-success-disabled, #dadbe780);
|
|
181
181
|
}
|
|
182
|
-
._bx32hr-1-
|
|
183
|
-
--_bx32h3-1-
|
|
182
|
+
._bx32hr-1-6-0:active {
|
|
183
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-success-disabled, #dadbe780);
|
|
184
184
|
}
|
|
185
|
-
._bx32hs-1-
|
|
186
|
-
--_bx32h0-1-
|
|
187
|
-
--_bx32h1-1-
|
|
188
|
-
--_bx32h3-1-
|
|
189
|
-
--_bx32h2-1-
|
|
185
|
+
._bx32hs-1-6-0 {
|
|
186
|
+
--_bx32h0-1-6-0: var(--dt-colors-text-critical-disabled, #54558780);
|
|
187
|
+
--_bx32h1-1-6-0: var(--dt-colors-icon-critical-disabled, #54558780);
|
|
188
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-critical-disabled, #dadbe780);
|
|
189
|
+
--_bx32h2-1-6-0: var(--dt-colors-background-field-critical-disabled, #dadbe780);
|
|
190
190
|
}
|
|
191
|
-
._bx32hs-1-
|
|
192
|
-
--_bx32h3-1-
|
|
191
|
+
._bx32hs-1-6-0:hover {
|
|
192
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-critical-disabled, #dadbe780);
|
|
193
193
|
}
|
|
194
|
-
._bx32hs-1-
|
|
195
|
-
--_bx32h3-1-
|
|
194
|
+
._bx32hs-1-6-0:active {
|
|
195
|
+
--_bx32h3-1-6-0: var(--dt-colors-background-field-critical-disabled, #dadbe780);
|
|
196
196
|
}
|
|
197
|
-
._bx32ht-1-
|
|
198
|
-
--_bx32h0-1-
|
|
199
|
-
--_bx32h1-1-
|
|
200
|
-
--_bx32h3-1-
|
|
201
|
-
--_bx32h2-1-
|
|
197
|
+
._bx32ht-1-6-0 {
|
|
198
|
+
--_bx32h0-1-6-0: var(--dt-colors-text-neutral-disabled, #54558780);
|
|
199
|
+
--_bx32h1-1-6-0: var(--dt-colors-icon-neutral-disabled, #54558780);
|
|
200
|
+
--_bx32h3-1-6-0: transparent;
|
|
201
|
+
--_bx32h2-1-6-0: transparent;
|
|
202
202
|
}
|
|
203
|
-
._bx32ht-1-
|
|
204
|
-
--_bx32h3-1-
|
|
203
|
+
._bx32ht-1-6-0:hover {
|
|
204
|
+
--_bx32h3-1-6-0: transparent;
|
|
205
205
|
}
|
|
206
|
-
._bx32ht-1-
|
|
207
|
-
--_bx32h3-1-
|
|
206
|
+
._bx32ht-1-6-0:active {
|
|
207
|
+
--_bx32h3-1-6-0: transparent;
|
|
208
208
|
}
|
package/styles/field.sty.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __defProp = Object.defineProperty;
|
|
2
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
@@ -23,5 +24,5 @@ __export(field_css_exports, {
|
|
|
23
24
|
module.exports = __toCommonJS(field_css_exports);
|
|
24
25
|
var import_field_css_ts_vanilla = require("./field.css");
|
|
25
26
|
var import_createRuntimeFn = require("@vanilla-extract/recipes/createRuntimeFn");
|
|
26
|
-
var fieldColorVars = { text: "var(--_bx32h0-1-
|
|
27
|
-
var fieldColorsCSS = (0, import_createRuntimeFn.createRuntimeFn)({ defaultClassName: "_bx32h4-1-
|
|
27
|
+
var fieldColorVars = { text: "var(--_bx32h0-1-6-0)", icon: "var(--_bx32h1-1-6-0)", backgroundStatic: "var(--_bx32h2-1-6-0)", background: "var(--_bx32h3-1-6-0)" };
|
|
28
|
+
var fieldColorsCSS = (0, import_createRuntimeFn.createRuntimeFn)({ defaultClassName: "_bx32h4-1-6-0", variantClassNames: { disabled: { true: "_bx32h5-1-6-0" }, color: { primary: "_bx32h6-1-6-0", neutral: "_bx32h7-1-6-0", success: "_bx32h8-1-6-0", critical: "_bx32h9-1-6-0", warning: "_bx32ha-1-6-0" }, variant: { "default": "_bx32hb-1-6-0", emphasized: "_bx32hc-1-6-0", accent: "_bx32hd-1-6-0" } }, defaultVariants: {}, compoundVariants: [[{ color: "primary", variant: "emphasized" }, "_bx32he-1-6-0"], [{ color: "primary", variant: "accent" }, "_bx32hf-1-6-0"], [{ color: "neutral", variant: "emphasized" }, "_bx32hg-1-6-0"], [{ color: "neutral", variant: "accent" }, "_bx32hh-1-6-0"], [{ color: "success", variant: "emphasized" }, "_bx32hi-1-6-0"], [{ color: "success", variant: "accent" }, "_bx32hj-1-6-0"], [{ color: "critical", variant: "emphasized" }, "_bx32hk-1-6-0"], [{ color: "critical", variant: "accent" }, "_bx32hl-1-6-0"], [{ color: "warning", variant: "emphasized" }, "_bx32hm-1-6-0"], [{ color: "warning", variant: "accent" }, "_bx32hn-1-6-0"], [{ color: "neutral", disabled: true }, "_bx32ho-1-6-0"], [{ color: "primary", disabled: true }, "_bx32hp-1-6-0"], [{ color: "warning", disabled: true }, "_bx32hq-1-6-0"], [{ color: "success", disabled: true }, "_bx32hr-1-6-0"], [{ color: "critical", disabled: true }, "_bx32hs-1-6-0"], [{ variant: "default", disabled: true }, "_bx32ht-1-6-0"]] });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { type CSSProperties } from 'react';
|
|
2
2
|
import { GapProps } from './getGapSprinkles.js';
|
|
3
3
|
import { GridFlexPositionProps } from './getGridFlexPositionSprinkles.js';
|
|
4
4
|
import { LayoutSizeProps } from './getLayoutSizeStyles.js';
|
|
@@ -20,35 +20,35 @@ export interface FlexItemStyleProps {
|
|
|
20
20
|
*/
|
|
21
21
|
export interface FlexStyleProps extends GridFlexPositionProps, GapProps, LayoutSizeProps, SpacingProps, FlexItemStyleProps {
|
|
22
22
|
/** Defines order */
|
|
23
|
-
order?:
|
|
23
|
+
order?: CSSProperties['order'];
|
|
24
24
|
/** Defines flex grow */
|
|
25
|
-
flexGrow?:
|
|
25
|
+
flexGrow?: CSSProperties['flexGrow'];
|
|
26
26
|
/** Defines flex shrink */
|
|
27
|
-
flexShrink?:
|
|
27
|
+
flexShrink?: CSSProperties['flexShrink'];
|
|
28
28
|
/** Defines flex basis */
|
|
29
|
-
flexBasis?:
|
|
29
|
+
flexBasis?: CSSProperties['flexBasis'];
|
|
30
30
|
/** Defines flex */
|
|
31
|
-
flex?:
|
|
31
|
+
flex?: CSSProperties['flex'];
|
|
32
32
|
/** Defines flex direction */
|
|
33
|
-
flexDirection?:
|
|
33
|
+
flexDirection?: CSSProperties['flexDirection'];
|
|
34
34
|
/** Defines flex wrap */
|
|
35
|
-
flexWrap?:
|
|
35
|
+
flexWrap?: CSSProperties['flexWrap'];
|
|
36
36
|
/** Defines flex flow */
|
|
37
|
-
flexFlow?:
|
|
37
|
+
flexFlow?: CSSProperties['flexFlow'];
|
|
38
38
|
/** Defines grid column start */
|
|
39
|
-
gridColumnStart?:
|
|
39
|
+
gridColumnStart?: CSSProperties['gridColumnStart'];
|
|
40
40
|
/** Defines grid column end */
|
|
41
|
-
gridColumnEnd?:
|
|
41
|
+
gridColumnEnd?: CSSProperties['gridColumnEnd'];
|
|
42
42
|
/** Defines grid row start */
|
|
43
|
-
gridRowStart?:
|
|
43
|
+
gridRowStart?: CSSProperties['gridRowStart'];
|
|
44
44
|
/** Defines grid row end */
|
|
45
|
-
gridRowEnd?:
|
|
45
|
+
gridRowEnd?: CSSProperties['gridRowEnd'];
|
|
46
46
|
/** Defines grid column */
|
|
47
|
-
gridColumn?:
|
|
47
|
+
gridColumn?: CSSProperties['gridColumn'];
|
|
48
48
|
/** Defines grid row */
|
|
49
|
-
gridRow?:
|
|
49
|
+
gridRow?: CSSProperties['gridRow'];
|
|
50
50
|
/** Defines grid area */
|
|
51
|
-
gridArea?:
|
|
51
|
+
gridArea?: CSSProperties['gridArea'];
|
|
52
52
|
}
|
|
53
53
|
/**
|
|
54
54
|
* Helper function that will extract all styling relevant props for the Flex styling
|
|
@@ -59,6 +59,6 @@ export interface FlexStyleProps extends GridFlexPositionProps, GapProps, LayoutS
|
|
|
59
59
|
*/
|
|
60
60
|
export declare function getFlexStyles<T extends FlexStyleProps>(props: T, defaults?: Partial<FlexStyleProps>): [
|
|
61
61
|
className: string,
|
|
62
|
-
style:
|
|
62
|
+
style: CSSProperties,
|
|
63
63
|
remainingProps: Omit<T, keyof FlexStyleProps>
|
|
64
64
|
];
|
package/styles/getFlexStyles.js
CHANGED