@primer/primitives 10.0.0-rc.fd912e08 → 10.0.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/README.md +2 -2
- package/dist/build/PrimerStyleDictionary.d.ts +8 -0
- package/dist/build/PrimerStyleDictionary.js +80 -0
- package/dist/build/filters/index.d.ts +14 -0
- package/dist/build/filters/index.js +14 -0
- package/dist/build/filters/isBorder.d.ts +7 -0
- package/dist/build/filters/isBorder.js +8 -0
- package/dist/build/filters/isColor.d.ts +7 -0
- package/dist/build/filters/isColor.js +13 -0
- package/dist/build/filters/isColorWithAlpha.d.ts +7 -0
- package/dist/build/filters/isColorWithAlpha.js +9 -0
- package/dist/build/filters/isColorWithMix.d.ts +7 -0
- package/dist/build/filters/isColorWithMix.js +24 -0
- package/dist/build/filters/isCubicBezier.d.ts +7 -0
- package/dist/build/filters/isCubicBezier.js +10 -0
- package/dist/build/filters/isDeprecated.d.ts +7 -0
- package/dist/build/filters/isDeprecated.js +8 -0
- package/dist/build/filters/isDimension.d.ts +7 -0
- package/dist/build/filters/isDimension.js +8 -0
- package/dist/build/filters/isDuration.d.ts +7 -0
- package/dist/build/filters/isDuration.js +8 -0
- package/dist/build/filters/isFontFamily.d.ts +7 -0
- package/dist/build/filters/isFontFamily.js +8 -0
- package/dist/build/filters/isFontWeight.d.ts +7 -0
- package/dist/build/filters/isFontWeight.js +8 -0
- package/dist/build/filters/isFromFile.d.ts +8 -0
- package/dist/build/filters/isFromFile.js +10 -0
- package/dist/build/filters/isNumber.d.ts +7 -0
- package/dist/build/filters/isNumber.js +8 -0
- package/dist/build/filters/isShadow.d.ts +7 -0
- package/dist/build/filters/isShadow.js +8 -0
- package/dist/build/filters/isSource.d.ts +7 -0
- package/dist/build/filters/isSource.js +8 -0
- package/dist/build/filters/isTypography.d.ts +7 -0
- package/dist/build/filters/isTypography.js +8 -0
- package/dist/build/formats/cssAdvanced.d.ts +2 -0
- package/dist/build/formats/cssAdvanced.js +86 -0
- package/dist/build/formats/cssCustomMedia.d.ts +7 -0
- package/dist/build/formats/cssCustomMedia.js +26 -0
- package/dist/build/formats/index.d.ts +9 -0
- package/dist/build/formats/index.js +9 -0
- package/dist/build/formats/javascriptCommonJs.d.ts +7 -0
- package/dist/build/formats/javascriptCommonJs.js +26 -0
- package/dist/build/formats/javascriptEsm.d.ts +7 -0
- package/dist/build/formats/javascriptEsm.js +26 -0
- package/dist/build/formats/jsonFigma.d.ts +7 -0
- package/dist/build/formats/jsonFigma.js +121 -0
- package/dist/build/formats/jsonNestedPrefixed.d.ts +8 -0
- package/dist/build/formats/jsonNestedPrefixed.js +30 -0
- package/dist/build/formats/jsonOneDimensional.d.ts +8 -0
- package/dist/build/formats/jsonOneDimensional.js +32 -0
- package/dist/build/formats/jsonPostCssFallback.d.ts +8 -0
- package/dist/build/formats/jsonPostCssFallback.js +14 -0
- package/dist/build/formats/typescriptExportDefinition.d.ts +7 -0
- package/dist/build/formats/typescriptExportDefinition.js +170 -0
- package/dist/build/formats/utilities/getPropName.d.ts +1 -0
- package/dist/build/formats/utilities/getPropName.js +16 -0
- package/dist/build/formats/utilities/jsonToFlat.d.ts +11 -0
- package/dist/build/formats/utilities/jsonToFlat.js +8 -0
- package/dist/build/formats/utilities/jsonToNestedValue.d.ts +8 -0
- package/dist/build/formats/utilities/jsonToNestedValue.js +23 -0
- package/dist/build/formats/utilities/prefixTokens.d.ts +8 -0
- package/dist/build/formats/utilities/prefixTokens.js +13 -0
- package/dist/build/parsers/index.d.ts +1 -0
- package/dist/build/parsers/index.js +1 -0
- package/dist/build/parsers/w3cJsonParser.d.ts +6 -0
- package/dist/build/parsers/w3cJsonParser.js +25 -0
- package/dist/build/platforms/css.d.ts +2 -0
- package/dist/build/platforms/css.js +96 -0
- package/dist/build/platforms/deprecatedJson.d.ts +2 -0
- package/dist/build/platforms/deprecatedJson.js +13 -0
- package/dist/build/platforms/docJson.d.ts +2 -0
- package/dist/build/platforms/docJson.js +35 -0
- package/dist/build/platforms/fallbacks.d.ts +2 -0
- package/dist/build/platforms/fallbacks.js +30 -0
- package/dist/build/platforms/figma.d.ts +2 -0
- package/dist/build/platforms/figma.js +60 -0
- package/dist/build/platforms/index.d.ts +10 -0
- package/dist/build/platforms/index.js +10 -0
- package/dist/build/platforms/javascript.d.ts +2 -0
- package/dist/build/platforms/javascript.js +26 -0
- package/dist/build/platforms/json.d.ts +2 -0
- package/dist/build/platforms/json.js +28 -0
- package/dist/build/platforms/styleLint.d.ts +2 -0
- package/dist/build/platforms/styleLint.js +30 -0
- package/dist/build/platforms/typeDefinitions.d.ts +2 -0
- package/dist/build/platforms/typeDefinitions.js +26 -0
- package/dist/build/platforms/typescript.d.ts +2 -0
- package/dist/build/platforms/typescript.js +26 -0
- package/dist/build/schemas/alphaValue.d.ts +2 -0
- package/dist/build/schemas/alphaValue.js +5 -0
- package/dist/build/schemas/baseToken.d.ts +11 -0
- package/dist/build/schemas/baseToken.js +7 -0
- package/dist/build/schemas/borderToken.d.ts +51 -0
- package/dist/build/schemas/borderToken.js +17 -0
- package/dist/build/schemas/collections.d.ts +6 -0
- package/dist/build/schemas/collections.js +12 -0
- package/dist/build/schemas/colorHexValue.d.ts +2 -0
- package/dist/build/schemas/colorHexValue.js +9 -0
- package/dist/build/schemas/colorToken.d.ts +92 -0
- package/dist/build/schemas/colorToken.js +53 -0
- package/dist/build/schemas/cubicBezierToken.d.ts +18 -0
- package/dist/build/schemas/cubicBezierToken.js +8 -0
- package/dist/build/schemas/designToken.d.ts +2 -0
- package/dist/build/schemas/designToken.js +35 -0
- package/dist/build/schemas/dimensionToken.d.ts +59 -0
- package/dist/build/schemas/dimensionToken.js +34 -0
- package/dist/build/schemas/dimensionValue.d.ts +2 -0
- package/dist/build/schemas/dimensionValue.js +9 -0
- package/dist/build/schemas/durationToken.d.ts +18 -0
- package/dist/build/schemas/durationToken.js +11 -0
- package/dist/build/schemas/durationValue.d.ts +2 -0
- package/dist/build/schemas/durationValue.js +5 -0
- package/dist/build/schemas/fontFamilyToken.d.ts +52 -0
- package/dist/build/schemas/fontFamilyToken.js +20 -0
- package/dist/build/schemas/fontWeightToken.d.ts +52 -0
- package/dist/build/schemas/fontWeightToken.js +21 -0
- package/dist/build/schemas/fontWeightValue.d.ts +2 -0
- package/dist/build/schemas/fontWeightValue.js +6 -0
- package/dist/build/schemas/numberToken.d.ts +71 -0
- package/dist/build/schemas/numberToken.js +27 -0
- package/dist/build/schemas/referenceValue.d.ts +2 -0
- package/dist/build/schemas/referenceValue.js +5 -0
- package/dist/build/schemas/scopes.d.ts +5 -0
- package/dist/build/schemas/scopes.js +29 -0
- package/dist/build/schemas/shadowToken.d.ts +164 -0
- package/dist/build/schemas/shadowToken.js +46 -0
- package/dist/build/schemas/stringToken.d.ts +18 -0
- package/dist/build/schemas/stringToken.js +10 -0
- package/dist/build/schemas/tokenName.d.ts +2 -0
- package/dist/build/schemas/tokenName.js +5 -0
- package/dist/build/schemas/tokenType.d.ts +3 -0
- package/dist/build/schemas/tokenType.js +2 -0
- package/dist/build/schemas/typographyToken.d.ts +59 -0
- package/dist/build/schemas/typographyToken.js +18 -0
- package/dist/build/schemas/validTokenType.d.ts +5 -0
- package/dist/build/schemas/validTokenType.js +31 -0
- package/dist/build/schemas/viewportRangeToken.d.ts +18 -0
- package/dist/build/schemas/viewportRangeToken.js +10 -0
- package/dist/build/transformers/borderToCss.d.ts +8 -0
- package/dist/build/transformers/borderToCss.js +38 -0
- package/dist/build/transformers/colorToHex.d.ts +8 -0
- package/dist/build/transformers/colorToHex.js +24 -0
- package/dist/build/transformers/colorToHexMix.d.ts +8 -0
- package/dist/build/transformers/colorToHexMix.js +20 -0
- package/dist/build/transformers/colorToRgbAlpha.d.ts +8 -0
- package/dist/build/transformers/colorToRgbAlpha.js +20 -0
- package/dist/build/transformers/colorToRgbaFloat.d.ts +8 -0
- package/dist/build/transformers/colorToRgbaFloat.js +46 -0
- package/dist/build/transformers/cubicBezierToCss.d.ts +8 -0
- package/dist/build/transformers/cubicBezierToCss.js +23 -0
- package/dist/build/transformers/dimensionToPixelUnitless.d.ts +8 -0
- package/dist/build/transformers/dimensionToPixelUnitless.js +49 -0
- package/dist/build/transformers/dimensionToRem.d.ts +8 -0
- package/dist/build/transformers/dimensionToRem.js +46 -0
- package/dist/build/transformers/dimensionToRemPxArray.d.ts +8 -0
- package/dist/build/transformers/dimensionToRemPxArray.js +46 -0
- package/dist/build/transformers/durationToCss.d.ts +8 -0
- package/dist/build/transformers/durationToCss.js +29 -0
- package/dist/build/transformers/figmaAttributes.d.ts +8 -0
- package/dist/build/transformers/figmaAttributes.js +55 -0
- package/dist/build/transformers/floatToPixel.d.ts +15 -0
- package/dist/build/transformers/floatToPixel.js +39 -0
- package/dist/build/transformers/fontFamilyToCss.d.ts +14 -0
- package/dist/build/transformers/fontFamilyToCss.js +37 -0
- package/dist/build/transformers/fontFamilyToFigma.d.ts +14 -0
- package/dist/build/transformers/fontFamilyToFigma.js +44 -0
- package/dist/build/transformers/fontWeightToNumber.d.ts +9 -0
- package/dist/build/transformers/fontWeightToNumber.js +50 -0
- package/dist/build/transformers/index.d.ts +25 -0
- package/dist/build/transformers/index.js +25 -0
- package/dist/build/transformers/jsonDeprecated.d.ts +8 -0
- package/dist/build/transformers/jsonDeprecated.js +14 -0
- package/dist/build/transformers/namePathToCamelCase.d.ts +8 -0
- package/dist/build/transformers/namePathToCamelCase.js +12 -0
- package/dist/build/transformers/namePathToDotNotation.d.ts +8 -0
- package/dist/build/transformers/namePathToDotNotation.js +31 -0
- package/dist/build/transformers/namePathToFigma.d.ts +9 -0
- package/dist/build/transformers/namePathToFigma.js +21 -0
- package/dist/build/transformers/namePathToKebabCase.d.ts +8 -0
- package/dist/build/transformers/namePathToKebabCase.js +16 -0
- package/dist/build/transformers/namePathToPascalCase.d.ts +8 -0
- package/dist/build/transformers/namePathToPascalCase.js +12 -0
- package/dist/build/transformers/namePathToSlashNotation.d.ts +8 -0
- package/dist/build/transformers/namePathToSlashNotation.js +16 -0
- package/dist/build/transformers/shadowToCss.d.ts +8 -0
- package/dist/build/transformers/shadowToCss.js +34 -0
- package/dist/build/transformers/typographyToCss.d.ts +8 -0
- package/dist/build/transformers/typographyToCss.js +27 -0
- package/dist/build/transformers/utilities/alpha.d.ts +9 -0
- package/dist/build/transformers/utilities/alpha.js +16 -0
- package/dist/build/transformers/utilities/checkRequiredTokenProperties.d.ts +7 -0
- package/dist/build/transformers/utilities/checkRequiredTokenProperties.js +13 -0
- package/dist/build/transformers/utilities/getTokenValue.d.ts +2 -0
- package/dist/build/transformers/utilities/getTokenValue.js +16 -0
- package/dist/build/transformers/utilities/hasSpaceInString.d.ts +1 -0
- package/dist/build/transformers/utilities/hasSpaceInString.js +6 -0
- package/dist/build/transformers/utilities/hexToRgbaFloat.d.ts +2 -0
- package/dist/build/transformers/utilities/hexToRgbaFloat.js +29 -0
- package/dist/build/transformers/utilities/invalidTokenError.d.ts +7 -0
- package/dist/build/transformers/utilities/invalidTokenError.js +27 -0
- package/dist/build/transformers/utilities/isRgbaFloat.d.ts +7 -0
- package/dist/build/transformers/utilities/isRgbaFloat.js +20 -0
- package/dist/build/transformers/utilities/mix.d.ts +5 -0
- package/dist/build/transformers/utilities/mix.js +38 -0
- package/dist/build/transformers/utilities/rgbaFloatToHex.d.ts +6 -0
- package/dist/build/transformers/utilities/rgbaFloatToHex.js +11 -0
- package/dist/build/types/Border.d.ts +5 -0
- package/dist/build/types/BorderTokenValue.d.ts +10 -0
- package/dist/build/types/ColorHex.d.ts +4 -0
- package/dist/build/types/PlatformInitializer.d.ts +11 -0
- package/dist/build/types/Shadow.d.ts +5 -0
- package/dist/build/types/ShadowTokenValue.d.ts +14 -0
- package/dist/build/types/SizeEm.d.ts +4 -0
- package/dist/build/types/SizePx.d.ts +4 -0
- package/dist/build/types/SizeRem.d.ts +4 -0
- package/dist/build/types/StyleDictionaryConfigGenerator.d.ts +15 -0
- package/dist/build/types/TokenBuildInput.d.ts +8 -0
- package/dist/build/types/TypographyTokenValue.d.ts +12 -0
- package/dist/build/types/w3cTransformedToken.d.ts +8 -0
- package/dist/build/utilities/copyFromDir.d.ts +8 -0
- package/dist/build/utilities/copyFromDir.js +31 -0
- package/dist/build/utilities/filterStringArray.d.ts +1 -0
- package/dist/build/utilities/filterStringArray.js +13 -0
- package/dist/build/utilities/getFlag.d.ts +8 -0
- package/dist/build/utilities/getFlag.js +12 -0
- package/dist/build/utilities/index.d.ts +9 -0
- package/dist/build/utilities/index.js +9 -0
- package/dist/build/utilities/joinFriendly.d.ts +1 -0
- package/dist/build/utilities/joinFriendly.js +1 -0
- package/dist/build/utilities/schemaErrorMessage.d.ts +1 -0
- package/dist/build/utilities/schemaErrorMessage.js +1 -0
- package/dist/build/utilities/toCamelCase.d.ts +1 -0
- package/dist/build/utilities/toCamelCase.js +16 -0
- package/dist/build/utilities/toPascalCase.d.ts +1 -0
- package/dist/build/utilities/toPascalCase.js +13 -0
- package/dist/build/utilities/treeWalker.d.ts +8 -0
- package/dist/build/utilities/treeWalker.js +23 -0
- package/dist/build/utilities/upperCaseFirstCharacter.d.ts +8 -0
- package/dist/build/utilities/upperCaseFirstCharacter.js +10 -0
- package/dist/css/base/motion/motion.css +17 -0
- package/dist/css/functional/motion/motion.css +4 -3
- package/dist/css/functional/themes/dark-colorblind.css +58 -38
- package/dist/css/functional/themes/dark-dimmed.css +44 -24
- package/dist/css/functional/themes/dark-high-contrast.css +42 -22
- package/dist/css/functional/themes/dark-tritanopia.css +44 -24
- package/dist/css/functional/themes/dark.css +42 -22
- package/dist/css/functional/themes/light-colorblind.css +60 -40
- package/dist/css/functional/themes/light-high-contrast.css +44 -24
- package/dist/css/functional/themes/light-tritanopia.css +42 -22
- package/dist/css/functional/themes/light.css +42 -22
- package/dist/css/functional/typography/typography.css +43 -43
- package/dist/css/primitives.css +64 -46
- package/dist/docs/base/motion/motion.json +205 -0
- package/dist/docs/functional/motion/motion.json +18 -3
- package/dist/docs/functional/themes/dark-colorblind.json +350 -1114
- package/dist/docs/functional/themes/dark-dimmed.json +364 -1152
- package/dist/docs/functional/themes/dark-high-contrast.json +312 -922
- package/dist/docs/functional/themes/dark-tritanopia.json +344 -1138
- package/dist/docs/functional/themes/dark.json +346 -1206
- package/dist/docs/functional/themes/light-colorblind.json +366 -1140
- package/dist/docs/functional/themes/light-high-contrast.json +335 -949
- package/dist/docs/functional/themes/light-tritanopia.json +311 -1135
- package/dist/docs/functional/themes/light.json +336 -1202
- package/dist/fallbacks/base/motion/motion.json +17 -0
- package/dist/fallbacks/functional/motion/motion.json +1 -0
- package/dist/figma/dimension/dimension.json +518 -518
- package/dist/figma/figma.json +19 -19
- package/dist/figma/scales/dark-dimmed.json +3536 -656
- package/dist/figma/scales/dark-high-constrast.json +3535 -655
- package/dist/figma/scales/dark.json +3371 -491
- package/dist/figma/scales/light-high-constrast.json +3533 -653
- package/dist/figma/scales/light.json +3370 -490
- package/dist/figma/shadows/dark-colorblind.json +285 -285
- package/dist/figma/shadows/dark-dimmed.json +285 -285
- package/dist/figma/shadows/dark-high-contrast.json +285 -285
- package/dist/figma/shadows/dark-tritanopia.json +285 -285
- package/dist/figma/shadows/dark.json +285 -285
- package/dist/figma/shadows/light-colorblind.json +254 -254
- package/dist/figma/shadows/light-high-contrast.json +254 -254
- package/dist/figma/shadows/light-tritanopia.json +254 -254
- package/dist/figma/shadows/light.json +254 -254
- package/dist/figma/themes/dark-colorblind.json +5197 -5068
- package/dist/figma/themes/dark-dimmed.json +5526 -5351
- package/dist/figma/themes/dark-high-contrast.json +4361 -4251
- package/dist/figma/themes/dark-tritanopia.json +5315 -5187
- package/dist/figma/themes/dark.json +5740 -5581
- package/dist/figma/themes/light-colorblind.json +5104 -4929
- package/dist/figma/themes/light-high-contrast.json +4462 -4319
- package/dist/figma/themes/light-tritanopia.json +5176 -5050
- package/dist/figma/themes/light.json +5657 -5500
- package/dist/figma/typography/typography.json +162 -162
- package/dist/internalCss/dark-colorblind.css +58 -38
- package/dist/internalCss/dark-dimmed.css +44 -24
- package/dist/internalCss/dark-high-contrast.css +42 -22
- package/dist/internalCss/dark-tritanopia.css +44 -24
- package/dist/internalCss/dark.css +42 -22
- package/dist/internalCss/light-colorblind.css +60 -40
- package/dist/internalCss/light-high-contrast.css +44 -24
- package/dist/internalCss/light-tritanopia.css +42 -22
- package/dist/internalCss/light.css +42 -22
- package/dist/styleLint/base/motion/motion.json +205 -0
- package/dist/styleLint/functional/motion/motion.json +18 -3
- package/dist/styleLint/functional/themes/dark-colorblind.json +350 -1114
- package/dist/styleLint/functional/themes/dark-dimmed.json +364 -1152
- package/dist/styleLint/functional/themes/dark-high-contrast.json +311 -921
- package/dist/styleLint/functional/themes/dark-tritanopia.json +344 -1138
- package/dist/styleLint/functional/themes/dark.json +346 -1206
- package/dist/styleLint/functional/themes/light-colorblind.json +366 -1140
- package/dist/styleLint/functional/themes/light-high-contrast.json +335 -949
- package/dist/styleLint/functional/themes/light-tritanopia.json +311 -1135
- package/dist/styleLint/functional/themes/light.json +336 -1202
- package/package.json +23 -30
- package/src/tokens/base/motion/easing.json5 +26 -0
- package/src/tokens/base/motion/timing.json5 +50 -0
- package/src/tokens/functional/color/dark/app-dark.json5 +236 -121
- package/src/tokens/functional/color/dark/data-vis-dark.json5 +40 -40
- package/src/tokens/functional/color/dark/display-dark.json5 +95 -95
- package/src/tokens/functional/color/dark/overrides/dark.dimmed.json5 +1 -9
- package/src/tokens/functional/color/dark/overrides/dark.high-contrast.json5 +40 -27
- package/src/tokens/functional/color/dark/overrides/dark.protanopia-deuteranopia.json5 +56 -30
- package/src/tokens/functional/color/dark/overrides/dark.tritanopia.json5 +37 -14
- package/src/tokens/functional/color/dark/patterns-dark.json +3963 -0
- package/src/tokens/functional/color/dark/patterns-dark.json5 +126 -277
- package/src/tokens/functional/color/dark/primitives-dark.json5 +78 -78
- package/src/tokens/functional/color/dark/syntax-dark.json5 +47 -47
- package/src/tokens/functional/color/light/app-light.json5 +179 -118
- package/src/tokens/functional/color/light/data-vis-light.json5 +40 -40
- package/src/tokens/functional/color/light/display-light.json5 +0 -95
- package/src/tokens/functional/color/light/overrides/light.high-contrast.json5 +25 -27
- package/src/tokens/functional/color/light/overrides/light.protanopia-deuteranopia.json5 +58 -33
- package/src/tokens/functional/color/light/overrides/light.tritanopia.json5 +59 -10
- package/src/tokens/functional/color/light/patterns-light.json5 +126 -276
- package/src/tokens/functional/color/light/primitives-light.json5 +0 -78
- package/src/tokens/functional/color/light/syntax-light.json5 +0 -47
- package/src/tokens/functional/motion/loading.json5 +1 -1
- package/src/tokens/functional/motion/patterns.json5 +9 -2
- package/src/tokens/functional/shadow/dark.json5 +0 -14
- package/src/tokens/functional/shadow/light.json5 +0 -13
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
$extensions: {
|
|
8
8
|
'org.primer.figma': {
|
|
9
9
|
collection: 'mode',
|
|
10
|
-
mode: 'light',
|
|
11
10
|
group: 'syntax',
|
|
12
11
|
},
|
|
13
12
|
},
|
|
@@ -18,7 +17,6 @@
|
|
|
18
17
|
$extensions: {
|
|
19
18
|
'org.primer.figma': {
|
|
20
19
|
collection: 'mode',
|
|
21
|
-
mode: 'light',
|
|
22
20
|
group: 'syntax',
|
|
23
21
|
},
|
|
24
22
|
},
|
|
@@ -29,7 +27,6 @@
|
|
|
29
27
|
$extensions: {
|
|
30
28
|
'org.primer.figma': {
|
|
31
29
|
collection: 'mode',
|
|
32
|
-
mode: 'light',
|
|
33
30
|
group: 'syntax',
|
|
34
31
|
},
|
|
35
32
|
},
|
|
@@ -40,7 +37,6 @@
|
|
|
40
37
|
$extensions: {
|
|
41
38
|
'org.primer.figma': {
|
|
42
39
|
collection: 'mode',
|
|
43
|
-
mode: 'light',
|
|
44
40
|
group: 'syntax',
|
|
45
41
|
},
|
|
46
42
|
},
|
|
@@ -51,7 +47,6 @@
|
|
|
51
47
|
$extensions: {
|
|
52
48
|
'org.primer.figma': {
|
|
53
49
|
collection: 'mode',
|
|
54
|
-
mode: 'light',
|
|
55
50
|
group: 'syntax',
|
|
56
51
|
},
|
|
57
52
|
},
|
|
@@ -62,7 +57,6 @@
|
|
|
62
57
|
$extensions: {
|
|
63
58
|
'org.primer.figma': {
|
|
64
59
|
collection: 'mode',
|
|
65
|
-
mode: 'light',
|
|
66
60
|
group: 'syntax',
|
|
67
61
|
},
|
|
68
62
|
},
|
|
@@ -73,7 +67,6 @@
|
|
|
73
67
|
$extensions: {
|
|
74
68
|
'org.primer.figma': {
|
|
75
69
|
collection: 'mode',
|
|
76
|
-
mode: 'light',
|
|
77
70
|
group: 'syntax',
|
|
78
71
|
},
|
|
79
72
|
},
|
|
@@ -84,7 +77,6 @@
|
|
|
84
77
|
$extensions: {
|
|
85
78
|
'org.primer.figma': {
|
|
86
79
|
collection: 'mode',
|
|
87
|
-
mode: 'light',
|
|
88
80
|
group: 'syntax',
|
|
89
81
|
},
|
|
90
82
|
},
|
|
@@ -95,7 +87,6 @@
|
|
|
95
87
|
$extensions: {
|
|
96
88
|
'org.primer.figma': {
|
|
97
89
|
collection: 'mode',
|
|
98
|
-
mode: 'light',
|
|
99
90
|
group: 'syntax',
|
|
100
91
|
},
|
|
101
92
|
},
|
|
@@ -106,7 +97,6 @@
|
|
|
106
97
|
$extensions: {
|
|
107
98
|
'org.primer.figma': {
|
|
108
99
|
collection: 'mode',
|
|
109
|
-
mode: 'light',
|
|
110
100
|
group: 'syntax',
|
|
111
101
|
},
|
|
112
102
|
},
|
|
@@ -117,7 +107,6 @@
|
|
|
117
107
|
$extensions: {
|
|
118
108
|
'org.primer.figma': {
|
|
119
109
|
collection: 'mode',
|
|
120
|
-
mode: 'light',
|
|
121
110
|
group: 'syntax',
|
|
122
111
|
},
|
|
123
112
|
},
|
|
@@ -128,7 +117,6 @@
|
|
|
128
117
|
$extensions: {
|
|
129
118
|
'org.primer.figma': {
|
|
130
119
|
collection: 'mode',
|
|
131
|
-
mode: 'light',
|
|
132
120
|
group: 'syntax',
|
|
133
121
|
},
|
|
134
122
|
},
|
|
@@ -139,7 +127,6 @@
|
|
|
139
127
|
$extensions: {
|
|
140
128
|
'org.primer.figma': {
|
|
141
129
|
collection: 'mode',
|
|
142
|
-
mode: 'light',
|
|
143
130
|
group: 'syntax',
|
|
144
131
|
},
|
|
145
132
|
},
|
|
@@ -150,7 +137,6 @@
|
|
|
150
137
|
$extensions: {
|
|
151
138
|
'org.primer.figma': {
|
|
152
139
|
collection: 'mode',
|
|
153
|
-
mode: 'light',
|
|
154
140
|
group: 'syntax',
|
|
155
141
|
},
|
|
156
142
|
},
|
|
@@ -161,7 +147,6 @@
|
|
|
161
147
|
$extensions: {
|
|
162
148
|
'org.primer.figma': {
|
|
163
149
|
collection: 'mode',
|
|
164
|
-
mode: 'light',
|
|
165
150
|
group: 'syntax',
|
|
166
151
|
},
|
|
167
152
|
},
|
|
@@ -172,7 +157,6 @@
|
|
|
172
157
|
$extensions: {
|
|
173
158
|
'org.primer.figma': {
|
|
174
159
|
collection: 'mode',
|
|
175
|
-
mode: 'light',
|
|
176
160
|
group: 'syntax',
|
|
177
161
|
},
|
|
178
162
|
},
|
|
@@ -183,7 +167,6 @@
|
|
|
183
167
|
$extensions: {
|
|
184
168
|
'org.primer.figma': {
|
|
185
169
|
collection: 'mode',
|
|
186
|
-
mode: 'light',
|
|
187
170
|
group: 'syntax',
|
|
188
171
|
},
|
|
189
172
|
},
|
|
@@ -197,7 +180,6 @@
|
|
|
197
180
|
$extensions: {
|
|
198
181
|
'org.primer.figma': {
|
|
199
182
|
collection: 'mode',
|
|
200
|
-
mode: 'light',
|
|
201
183
|
group: 'syntax',
|
|
202
184
|
},
|
|
203
185
|
},
|
|
@@ -208,7 +190,6 @@
|
|
|
208
190
|
$extensions: {
|
|
209
191
|
'org.primer.figma': {
|
|
210
192
|
collection: 'mode',
|
|
211
|
-
mode: 'light',
|
|
212
193
|
group: 'syntax',
|
|
213
194
|
},
|
|
214
195
|
},
|
|
@@ -219,7 +200,6 @@
|
|
|
219
200
|
$extensions: {
|
|
220
201
|
'org.primer.figma': {
|
|
221
202
|
collection: 'mode',
|
|
222
|
-
mode: 'light',
|
|
223
203
|
group: 'syntax',
|
|
224
204
|
},
|
|
225
205
|
},
|
|
@@ -230,7 +210,6 @@
|
|
|
230
210
|
$extensions: {
|
|
231
211
|
'org.primer.figma': {
|
|
232
212
|
collection: 'mode',
|
|
233
|
-
mode: 'light',
|
|
234
213
|
group: 'syntax',
|
|
235
214
|
},
|
|
236
215
|
},
|
|
@@ -243,7 +222,6 @@
|
|
|
243
222
|
$extensions: {
|
|
244
223
|
'org.primer.figma': {
|
|
245
224
|
collection: 'mode',
|
|
246
|
-
mode: 'light',
|
|
247
225
|
group: 'syntax',
|
|
248
226
|
},
|
|
249
227
|
},
|
|
@@ -256,7 +234,6 @@
|
|
|
256
234
|
$extensions: {
|
|
257
235
|
'org.primer.figma': {
|
|
258
236
|
collection: 'mode',
|
|
259
|
-
mode: 'light',
|
|
260
237
|
group: 'syntax',
|
|
261
238
|
},
|
|
262
239
|
},
|
|
@@ -267,7 +244,6 @@
|
|
|
267
244
|
$extensions: {
|
|
268
245
|
'org.primer.figma': {
|
|
269
246
|
collection: 'mode',
|
|
270
|
-
mode: 'light',
|
|
271
247
|
group: 'syntax',
|
|
272
248
|
},
|
|
273
249
|
},
|
|
@@ -278,7 +254,6 @@
|
|
|
278
254
|
$extensions: {
|
|
279
255
|
'org.primer.figma': {
|
|
280
256
|
collection: 'mode',
|
|
281
|
-
mode: 'light',
|
|
282
257
|
group: 'syntax',
|
|
283
258
|
},
|
|
284
259
|
},
|
|
@@ -289,7 +264,6 @@
|
|
|
289
264
|
$extensions: {
|
|
290
265
|
'org.primer.figma': {
|
|
291
266
|
collection: 'mode',
|
|
292
|
-
mode: 'light',
|
|
293
267
|
group: 'syntax',
|
|
294
268
|
},
|
|
295
269
|
},
|
|
@@ -301,7 +275,6 @@
|
|
|
301
275
|
$extensions: {
|
|
302
276
|
'org.primer.figma': {
|
|
303
277
|
collection: 'mode',
|
|
304
|
-
mode: 'light',
|
|
305
278
|
group: 'syntax',
|
|
306
279
|
},
|
|
307
280
|
},
|
|
@@ -312,7 +285,6 @@
|
|
|
312
285
|
$extensions: {
|
|
313
286
|
'org.primer.figma': {
|
|
314
287
|
collection: 'mode',
|
|
315
|
-
mode: 'light',
|
|
316
288
|
group: 'syntax',
|
|
317
289
|
},
|
|
318
290
|
},
|
|
@@ -326,7 +298,6 @@
|
|
|
326
298
|
$extensions: {
|
|
327
299
|
'org.primer.figma': {
|
|
328
300
|
collection: 'mode',
|
|
329
|
-
mode: 'light',
|
|
330
301
|
group: 'syntax',
|
|
331
302
|
},
|
|
332
303
|
},
|
|
@@ -337,7 +308,6 @@
|
|
|
337
308
|
$extensions: {
|
|
338
309
|
'org.primer.figma': {
|
|
339
310
|
collection: 'mode',
|
|
340
|
-
mode: 'light',
|
|
341
311
|
group: 'syntax',
|
|
342
312
|
},
|
|
343
313
|
},
|
|
@@ -352,7 +322,6 @@
|
|
|
352
322
|
$extensions: {
|
|
353
323
|
'org.primer.figma': {
|
|
354
324
|
collection: 'mode',
|
|
355
|
-
mode: 'light',
|
|
356
325
|
group: 'syntax',
|
|
357
326
|
},
|
|
358
327
|
},
|
|
@@ -363,7 +332,6 @@
|
|
|
363
332
|
$extensions: {
|
|
364
333
|
'org.primer.figma': {
|
|
365
334
|
collection: 'mode',
|
|
366
|
-
mode: 'light',
|
|
367
335
|
group: 'syntax',
|
|
368
336
|
},
|
|
369
337
|
},
|
|
@@ -376,7 +344,6 @@
|
|
|
376
344
|
$extensions: {
|
|
377
345
|
'org.primer.figma': {
|
|
378
346
|
collection: 'mode',
|
|
379
|
-
mode: 'light',
|
|
380
347
|
group: 'syntax',
|
|
381
348
|
},
|
|
382
349
|
},
|
|
@@ -388,7 +355,6 @@
|
|
|
388
355
|
$extensions: {
|
|
389
356
|
'org.primer.figma': {
|
|
390
357
|
collection: 'mode',
|
|
391
|
-
mode: 'light',
|
|
392
358
|
group: 'syntax',
|
|
393
359
|
},
|
|
394
360
|
},
|
|
@@ -399,7 +365,6 @@
|
|
|
399
365
|
$extensions: {
|
|
400
366
|
'org.primer.figma': {
|
|
401
367
|
collection: 'mode',
|
|
402
|
-
mode: 'light',
|
|
403
368
|
group: 'syntax',
|
|
404
369
|
},
|
|
405
370
|
},
|
|
@@ -410,7 +375,6 @@
|
|
|
410
375
|
$extensions: {
|
|
411
376
|
'org.primer.figma': {
|
|
412
377
|
collection: 'mode',
|
|
413
|
-
mode: 'light',
|
|
414
378
|
group: 'syntax',
|
|
415
379
|
},
|
|
416
380
|
},
|
|
@@ -421,7 +385,6 @@
|
|
|
421
385
|
$extensions: {
|
|
422
386
|
'org.primer.figma': {
|
|
423
387
|
collection: 'mode',
|
|
424
|
-
mode: 'light',
|
|
425
388
|
group: 'syntax',
|
|
426
389
|
},
|
|
427
390
|
},
|
|
@@ -433,7 +396,6 @@
|
|
|
433
396
|
$extensions: {
|
|
434
397
|
'org.primer.figma': {
|
|
435
398
|
collection: 'mode',
|
|
436
|
-
mode: 'light',
|
|
437
399
|
group: 'syntax',
|
|
438
400
|
},
|
|
439
401
|
},
|
|
@@ -444,7 +406,6 @@
|
|
|
444
406
|
$extensions: {
|
|
445
407
|
'org.primer.figma': {
|
|
446
408
|
collection: 'mode',
|
|
447
|
-
mode: 'light',
|
|
448
409
|
group: 'syntax',
|
|
449
410
|
},
|
|
450
411
|
},
|
|
@@ -457,7 +418,6 @@
|
|
|
457
418
|
$extensions: {
|
|
458
419
|
'org.primer.figma': {
|
|
459
420
|
collection: 'mode',
|
|
460
|
-
mode: 'light',
|
|
461
421
|
group: 'syntax',
|
|
462
422
|
},
|
|
463
423
|
},
|
|
@@ -468,7 +428,6 @@
|
|
|
468
428
|
$extensions: {
|
|
469
429
|
'org.primer.figma': {
|
|
470
430
|
collection: 'mode',
|
|
471
|
-
mode: 'light',
|
|
472
431
|
group: 'syntax',
|
|
473
432
|
},
|
|
474
433
|
},
|
|
@@ -481,7 +440,6 @@
|
|
|
481
440
|
$extensions: {
|
|
482
441
|
'org.primer.figma': {
|
|
483
442
|
collection: 'mode',
|
|
484
|
-
mode: 'light',
|
|
485
443
|
group: 'syntax',
|
|
486
444
|
},
|
|
487
445
|
},
|
|
@@ -492,7 +450,6 @@
|
|
|
492
450
|
$extensions: {
|
|
493
451
|
'org.primer.figma': {
|
|
494
452
|
collection: 'mode',
|
|
495
|
-
mode: 'light',
|
|
496
453
|
group: 'syntax',
|
|
497
454
|
},
|
|
498
455
|
},
|
|
@@ -505,7 +462,6 @@
|
|
|
505
462
|
$extensions: {
|
|
506
463
|
'org.primer.figma': {
|
|
507
464
|
collection: 'mode',
|
|
508
|
-
mode: 'light',
|
|
509
465
|
group: 'syntax',
|
|
510
466
|
},
|
|
511
467
|
},
|
|
@@ -516,7 +472,6 @@
|
|
|
516
472
|
$extensions: {
|
|
517
473
|
'org.primer.figma': {
|
|
518
474
|
collection: 'mode',
|
|
519
|
-
mode: 'light',
|
|
520
475
|
group: 'syntax',
|
|
521
476
|
},
|
|
522
477
|
},
|
|
@@ -531,7 +486,6 @@
|
|
|
531
486
|
$extensions: {
|
|
532
487
|
'org.primer.figma': {
|
|
533
488
|
collection: 'mode',
|
|
534
|
-
mode: 'light',
|
|
535
489
|
group: 'syntax',
|
|
536
490
|
},
|
|
537
491
|
},
|
|
@@ -546,7 +500,6 @@
|
|
|
546
500
|
$extensions: {
|
|
547
501
|
'org.primer.figma': {
|
|
548
502
|
collection: 'mode',
|
|
549
|
-
mode: 'light',
|
|
550
503
|
group: 'syntax',
|
|
551
504
|
},
|
|
552
505
|
},
|
|
@@ -7,17 +7,24 @@
|
|
|
7
7
|
spinner: {
|
|
8
8
|
duration: {
|
|
9
9
|
rotation: {
|
|
10
|
-
$value: '
|
|
10
|
+
$value: '{base.duration.1000}',
|
|
11
11
|
$type: 'duration',
|
|
12
12
|
$description: 'The amount of time it takes the "Spinner" loading indicator to make a full 360deg rotation',
|
|
13
13
|
},
|
|
14
14
|
},
|
|
15
|
+
easing: {
|
|
16
|
+
rotation: {
|
|
17
|
+
$value: '{base.easing.linear}',
|
|
18
|
+
$type: 'cubicBezier',
|
|
19
|
+
$description: 'The easing curve for the "Spinner" loading indicator rotation',
|
|
20
|
+
},
|
|
21
|
+
},
|
|
15
22
|
},
|
|
16
23
|
skeletonLoader: {
|
|
17
24
|
shimmer: {
|
|
18
25
|
duration: {
|
|
19
26
|
scale: {
|
|
20
|
-
$value: '
|
|
27
|
+
$value: '{base.duration.1000}',
|
|
21
28
|
$type: 'duration',
|
|
22
29
|
$description: 'The amount of times it takes the "shimmer" effect to go from the start (left) of the skeleton loader to the end (right)',
|
|
23
30
|
},
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
$extensions: {
|
|
16
16
|
'org.primer.figma': {
|
|
17
17
|
collection: 'mode',
|
|
18
|
-
mode: 'light',
|
|
19
18
|
group: 'component shadow',
|
|
20
19
|
},
|
|
21
20
|
},
|
|
@@ -40,7 +39,6 @@
|
|
|
40
39
|
$extensions: {
|
|
41
40
|
'org.primer.figma': {
|
|
42
41
|
collection: 'mode',
|
|
43
|
-
mode: 'light',
|
|
44
42
|
group: 'component shadow',
|
|
45
43
|
},
|
|
46
44
|
},
|
|
@@ -65,7 +63,6 @@
|
|
|
65
63
|
$extensions: {
|
|
66
64
|
'org.primer.figma': {
|
|
67
65
|
collection: 'mode',
|
|
68
|
-
mode: 'light',
|
|
69
66
|
group: 'component shadow',
|
|
70
67
|
},
|
|
71
68
|
},
|
|
@@ -90,7 +87,6 @@
|
|
|
90
87
|
$extensions: {
|
|
91
88
|
'org.primer.figma': {
|
|
92
89
|
collection: 'mode',
|
|
93
|
-
mode: 'light',
|
|
94
90
|
group: 'component shadow',
|
|
95
91
|
},
|
|
96
92
|
},
|
|
@@ -115,7 +111,6 @@
|
|
|
115
111
|
$extensions: {
|
|
116
112
|
'org.primer.figma': {
|
|
117
113
|
collection: 'mode',
|
|
118
|
-
mode: 'light',
|
|
119
114
|
group: 'component shadow',
|
|
120
115
|
},
|
|
121
116
|
},
|
|
@@ -138,7 +133,6 @@
|
|
|
138
133
|
$extensions: {
|
|
139
134
|
'org.primer.figma': {
|
|
140
135
|
collection: 'mode',
|
|
141
|
-
mode: 'light',
|
|
142
136
|
group: 'shadow',
|
|
143
137
|
},
|
|
144
138
|
},
|
|
@@ -158,7 +152,6 @@
|
|
|
158
152
|
$extensions: {
|
|
159
153
|
'org.primer.figma': {
|
|
160
154
|
collection: 'mode',
|
|
161
|
-
mode: 'light',
|
|
162
155
|
group: 'shadow',
|
|
163
156
|
},
|
|
164
157
|
},
|
|
@@ -179,7 +172,6 @@
|
|
|
179
172
|
$extensions: {
|
|
180
173
|
'org.primer.figma': {
|
|
181
174
|
collection: 'mode',
|
|
182
|
-
mode: 'light',
|
|
183
175
|
group: 'shadow',
|
|
184
176
|
},
|
|
185
177
|
},
|
|
@@ -199,7 +191,6 @@
|
|
|
199
191
|
$extensions: {
|
|
200
192
|
'org.primer.figma': {
|
|
201
193
|
collection: 'mode',
|
|
202
|
-
mode: 'light',
|
|
203
194
|
group: 'shadow',
|
|
204
195
|
},
|
|
205
196
|
},
|
|
@@ -237,7 +228,6 @@
|
|
|
237
228
|
$extensions: {
|
|
238
229
|
'org.primer.figma': {
|
|
239
230
|
collection: 'mode',
|
|
240
|
-
mode: 'light',
|
|
241
231
|
group: 'shadow',
|
|
242
232
|
},
|
|
243
233
|
},
|
|
@@ -289,7 +279,6 @@
|
|
|
289
279
|
$extensions: {
|
|
290
280
|
'org.primer.figma': {
|
|
291
281
|
collection: 'mode',
|
|
292
|
-
mode: 'light',
|
|
293
282
|
group: 'shadow',
|
|
294
283
|
},
|
|
295
284
|
},
|
|
@@ -317,7 +306,6 @@
|
|
|
317
306
|
$extensions: {
|
|
318
307
|
'org.primer.figma': {
|
|
319
308
|
collection: 'mode',
|
|
320
|
-
mode: 'light',
|
|
321
309
|
group: 'shadow',
|
|
322
310
|
},
|
|
323
311
|
},
|
|
@@ -345,7 +333,6 @@
|
|
|
345
333
|
$extensions: {
|
|
346
334
|
'org.primer.figma': {
|
|
347
335
|
collection: 'mode',
|
|
348
|
-
mode: 'light',
|
|
349
336
|
group: 'shadow',
|
|
350
337
|
},
|
|
351
338
|
},
|
|
@@ -373,7 +360,6 @@
|
|
|
373
360
|
$extensions: {
|
|
374
361
|
'org.primer.figma': {
|
|
375
362
|
collection: 'mode',
|
|
376
|
-
mode: 'light',
|
|
377
363
|
group: 'shadow',
|
|
378
364
|
},
|
|
379
365
|
},
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
$extensions: {
|
|
16
16
|
'org.primer.figma': {
|
|
17
17
|
collection: 'mode',
|
|
18
|
-
mode: 'light',
|
|
19
18
|
group: 'component shadow',
|
|
20
19
|
},
|
|
21
20
|
},
|
|
@@ -40,7 +39,6 @@
|
|
|
40
39
|
$extensions: {
|
|
41
40
|
'org.primer.figma': {
|
|
42
41
|
collection: 'mode',
|
|
43
|
-
mode: 'light',
|
|
44
42
|
group: 'component shadow',
|
|
45
43
|
},
|
|
46
44
|
},
|
|
@@ -65,7 +63,6 @@
|
|
|
65
63
|
$extensions: {
|
|
66
64
|
'org.primer.figma': {
|
|
67
65
|
collection: 'mode',
|
|
68
|
-
mode: 'light',
|
|
69
66
|
group: 'component shadow',
|
|
70
67
|
},
|
|
71
68
|
},
|
|
@@ -90,7 +87,6 @@
|
|
|
90
87
|
$extensions: {
|
|
91
88
|
'org.primer.figma': {
|
|
92
89
|
collection: 'mode',
|
|
93
|
-
mode: 'light',
|
|
94
90
|
group: 'component shadow',
|
|
95
91
|
},
|
|
96
92
|
},
|
|
@@ -115,7 +111,6 @@
|
|
|
115
111
|
$extensions: {
|
|
116
112
|
'org.primer.figma': {
|
|
117
113
|
collection: 'mode',
|
|
118
|
-
mode: 'light',
|
|
119
114
|
group: 'component shadow',
|
|
120
115
|
},
|
|
121
116
|
},
|
|
@@ -138,7 +133,6 @@
|
|
|
138
133
|
$extensions: {
|
|
139
134
|
'org.primer.figma': {
|
|
140
135
|
collection: 'mode',
|
|
141
|
-
mode: 'light',
|
|
142
136
|
group: 'shadow',
|
|
143
137
|
},
|
|
144
138
|
},
|
|
@@ -158,7 +152,6 @@
|
|
|
158
152
|
$extensions: {
|
|
159
153
|
'org.primer.figma': {
|
|
160
154
|
collection: 'mode',
|
|
161
|
-
mode: 'light',
|
|
162
155
|
group: 'shadow',
|
|
163
156
|
},
|
|
164
157
|
},
|
|
@@ -179,7 +172,6 @@
|
|
|
179
172
|
$extensions: {
|
|
180
173
|
'org.primer.figma': {
|
|
181
174
|
collection: 'mode',
|
|
182
|
-
mode: 'light',
|
|
183
175
|
group: 'shadow',
|
|
184
176
|
},
|
|
185
177
|
},
|
|
@@ -199,7 +191,6 @@
|
|
|
199
191
|
$extensions: {
|
|
200
192
|
'org.primer.figma': {
|
|
201
193
|
collection: 'mode',
|
|
202
|
-
mode: 'light',
|
|
203
194
|
group: 'shadow',
|
|
204
195
|
},
|
|
205
196
|
},
|
|
@@ -237,7 +228,6 @@
|
|
|
237
228
|
$extensions: {
|
|
238
229
|
'org.primer.figma': {
|
|
239
230
|
collection: 'mode',
|
|
240
|
-
mode: 'light',
|
|
241
231
|
group: 'shadow',
|
|
242
232
|
},
|
|
243
233
|
},
|
|
@@ -289,7 +279,6 @@
|
|
|
289
279
|
$extensions: {
|
|
290
280
|
'org.primer.figma': {
|
|
291
281
|
collection: 'mode',
|
|
292
|
-
mode: 'light',
|
|
293
282
|
group: 'shadow',
|
|
294
283
|
},
|
|
295
284
|
},
|
|
@@ -317,7 +306,6 @@
|
|
|
317
306
|
$extensions: {
|
|
318
307
|
'org.primer.figma': {
|
|
319
308
|
collection: 'mode',
|
|
320
|
-
mode: 'light',
|
|
321
309
|
group: 'shadow',
|
|
322
310
|
},
|
|
323
311
|
},
|
|
@@ -345,7 +333,6 @@
|
|
|
345
333
|
$extensions: {
|
|
346
334
|
'org.primer.figma': {
|
|
347
335
|
collection: 'mode',
|
|
348
|
-
mode: 'light',
|
|
349
336
|
group: 'shadow',
|
|
350
337
|
},
|
|
351
338
|
},
|