@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,7 @@
|
|
|
7
7
|
$extensions: {
|
|
8
8
|
'org.primer.figma': {
|
|
9
9
|
collection: 'mode',
|
|
10
|
-
|
|
10
|
+
|
|
11
11
|
group: 'syntax',
|
|
12
12
|
},
|
|
13
13
|
},
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
$extensions: {
|
|
19
19
|
'org.primer.figma': {
|
|
20
20
|
collection: 'mode',
|
|
21
|
-
|
|
21
|
+
|
|
22
22
|
group: 'syntax',
|
|
23
23
|
},
|
|
24
24
|
},
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
$extensions: {
|
|
30
30
|
'org.primer.figma': {
|
|
31
31
|
collection: 'mode',
|
|
32
|
-
|
|
32
|
+
|
|
33
33
|
group: 'syntax',
|
|
34
34
|
},
|
|
35
35
|
},
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
$extensions: {
|
|
41
41
|
'org.primer.figma': {
|
|
42
42
|
collection: 'mode',
|
|
43
|
-
|
|
43
|
+
|
|
44
44
|
group: 'syntax',
|
|
45
45
|
},
|
|
46
46
|
},
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
$extensions: {
|
|
52
52
|
'org.primer.figma': {
|
|
53
53
|
collection: 'mode',
|
|
54
|
-
|
|
54
|
+
|
|
55
55
|
group: 'syntax',
|
|
56
56
|
},
|
|
57
57
|
},
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
$extensions: {
|
|
63
63
|
'org.primer.figma': {
|
|
64
64
|
collection: 'mode',
|
|
65
|
-
|
|
65
|
+
|
|
66
66
|
group: 'syntax',
|
|
67
67
|
},
|
|
68
68
|
},
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
$extensions: {
|
|
74
74
|
'org.primer.figma': {
|
|
75
75
|
collection: 'mode',
|
|
76
|
-
|
|
76
|
+
|
|
77
77
|
group: 'syntax',
|
|
78
78
|
},
|
|
79
79
|
},
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
$extensions: {
|
|
85
85
|
'org.primer.figma': {
|
|
86
86
|
collection: 'mode',
|
|
87
|
-
|
|
87
|
+
|
|
88
88
|
group: 'syntax',
|
|
89
89
|
},
|
|
90
90
|
},
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
$extensions: {
|
|
96
96
|
'org.primer.figma': {
|
|
97
97
|
collection: 'mode',
|
|
98
|
-
|
|
98
|
+
|
|
99
99
|
group: 'syntax',
|
|
100
100
|
},
|
|
101
101
|
},
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
$extensions: {
|
|
107
107
|
'org.primer.figma': {
|
|
108
108
|
collection: 'mode',
|
|
109
|
-
|
|
109
|
+
|
|
110
110
|
group: 'syntax',
|
|
111
111
|
},
|
|
112
112
|
},
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
$extensions: {
|
|
118
118
|
'org.primer.figma': {
|
|
119
119
|
collection: 'mode',
|
|
120
|
-
|
|
120
|
+
|
|
121
121
|
group: 'syntax',
|
|
122
122
|
},
|
|
123
123
|
},
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
$extensions: {
|
|
129
129
|
'org.primer.figma': {
|
|
130
130
|
collection: 'mode',
|
|
131
|
-
|
|
131
|
+
|
|
132
132
|
group: 'syntax',
|
|
133
133
|
},
|
|
134
134
|
},
|
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
$extensions: {
|
|
140
140
|
'org.primer.figma': {
|
|
141
141
|
collection: 'mode',
|
|
142
|
-
|
|
142
|
+
|
|
143
143
|
group: 'syntax',
|
|
144
144
|
},
|
|
145
145
|
},
|
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
$extensions: {
|
|
151
151
|
'org.primer.figma': {
|
|
152
152
|
collection: 'mode',
|
|
153
|
-
|
|
153
|
+
|
|
154
154
|
group: 'syntax',
|
|
155
155
|
},
|
|
156
156
|
},
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
$extensions: {
|
|
162
162
|
'org.primer.figma': {
|
|
163
163
|
collection: 'mode',
|
|
164
|
-
|
|
164
|
+
|
|
165
165
|
group: 'syntax',
|
|
166
166
|
},
|
|
167
167
|
},
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
$extensions: {
|
|
173
173
|
'org.primer.figma': {
|
|
174
174
|
collection: 'mode',
|
|
175
|
-
|
|
175
|
+
|
|
176
176
|
group: 'syntax',
|
|
177
177
|
},
|
|
178
178
|
},
|
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
$extensions: {
|
|
184
184
|
'org.primer.figma': {
|
|
185
185
|
collection: 'mode',
|
|
186
|
-
|
|
186
|
+
|
|
187
187
|
group: 'syntax',
|
|
188
188
|
},
|
|
189
189
|
},
|
|
@@ -197,7 +197,7 @@
|
|
|
197
197
|
$extensions: {
|
|
198
198
|
'org.primer.figma': {
|
|
199
199
|
collection: 'mode',
|
|
200
|
-
|
|
200
|
+
|
|
201
201
|
group: 'syntax',
|
|
202
202
|
},
|
|
203
203
|
},
|
|
@@ -208,7 +208,7 @@
|
|
|
208
208
|
$extensions: {
|
|
209
209
|
'org.primer.figma': {
|
|
210
210
|
collection: 'mode',
|
|
211
|
-
|
|
211
|
+
|
|
212
212
|
group: 'syntax',
|
|
213
213
|
},
|
|
214
214
|
},
|
|
@@ -219,7 +219,7 @@
|
|
|
219
219
|
$extensions: {
|
|
220
220
|
'org.primer.figma': {
|
|
221
221
|
collection: 'mode',
|
|
222
|
-
|
|
222
|
+
|
|
223
223
|
group: 'syntax',
|
|
224
224
|
},
|
|
225
225
|
},
|
|
@@ -230,7 +230,7 @@
|
|
|
230
230
|
$extensions: {
|
|
231
231
|
'org.primer.figma': {
|
|
232
232
|
collection: 'mode',
|
|
233
|
-
|
|
233
|
+
|
|
234
234
|
group: 'syntax',
|
|
235
235
|
},
|
|
236
236
|
},
|
|
@@ -243,7 +243,7 @@
|
|
|
243
243
|
$extensions: {
|
|
244
244
|
'org.primer.figma': {
|
|
245
245
|
collection: 'mode',
|
|
246
|
-
|
|
246
|
+
|
|
247
247
|
group: 'syntax',
|
|
248
248
|
},
|
|
249
249
|
},
|
|
@@ -256,7 +256,7 @@
|
|
|
256
256
|
$extensions: {
|
|
257
257
|
'org.primer.figma': {
|
|
258
258
|
collection: 'mode',
|
|
259
|
-
|
|
259
|
+
|
|
260
260
|
group: 'syntax',
|
|
261
261
|
},
|
|
262
262
|
},
|
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
$extensions: {
|
|
268
268
|
'org.primer.figma': {
|
|
269
269
|
collection: 'mode',
|
|
270
|
-
|
|
270
|
+
|
|
271
271
|
group: 'syntax',
|
|
272
272
|
},
|
|
273
273
|
},
|
|
@@ -278,7 +278,7 @@
|
|
|
278
278
|
$extensions: {
|
|
279
279
|
'org.primer.figma': {
|
|
280
280
|
collection: 'mode',
|
|
281
|
-
|
|
281
|
+
|
|
282
282
|
group: 'syntax',
|
|
283
283
|
},
|
|
284
284
|
},
|
|
@@ -289,7 +289,7 @@
|
|
|
289
289
|
$extensions: {
|
|
290
290
|
'org.primer.figma': {
|
|
291
291
|
collection: 'mode',
|
|
292
|
-
|
|
292
|
+
|
|
293
293
|
group: 'syntax',
|
|
294
294
|
},
|
|
295
295
|
},
|
|
@@ -301,7 +301,7 @@
|
|
|
301
301
|
$extensions: {
|
|
302
302
|
'org.primer.figma': {
|
|
303
303
|
collection: 'mode',
|
|
304
|
-
|
|
304
|
+
|
|
305
305
|
group: 'syntax',
|
|
306
306
|
},
|
|
307
307
|
},
|
|
@@ -312,7 +312,7 @@
|
|
|
312
312
|
$extensions: {
|
|
313
313
|
'org.primer.figma': {
|
|
314
314
|
collection: 'mode',
|
|
315
|
-
|
|
315
|
+
|
|
316
316
|
group: 'syntax',
|
|
317
317
|
},
|
|
318
318
|
},
|
|
@@ -326,7 +326,7 @@
|
|
|
326
326
|
$extensions: {
|
|
327
327
|
'org.primer.figma': {
|
|
328
328
|
collection: 'mode',
|
|
329
|
-
|
|
329
|
+
|
|
330
330
|
group: 'syntax',
|
|
331
331
|
},
|
|
332
332
|
},
|
|
@@ -337,7 +337,7 @@
|
|
|
337
337
|
$extensions: {
|
|
338
338
|
'org.primer.figma': {
|
|
339
339
|
collection: 'mode',
|
|
340
|
-
|
|
340
|
+
|
|
341
341
|
group: 'syntax',
|
|
342
342
|
},
|
|
343
343
|
},
|
|
@@ -352,7 +352,7 @@
|
|
|
352
352
|
$extensions: {
|
|
353
353
|
'org.primer.figma': {
|
|
354
354
|
collection: 'mode',
|
|
355
|
-
|
|
355
|
+
|
|
356
356
|
group: 'syntax',
|
|
357
357
|
},
|
|
358
358
|
},
|
|
@@ -363,7 +363,7 @@
|
|
|
363
363
|
$extensions: {
|
|
364
364
|
'org.primer.figma': {
|
|
365
365
|
collection: 'mode',
|
|
366
|
-
|
|
366
|
+
|
|
367
367
|
group: 'syntax',
|
|
368
368
|
},
|
|
369
369
|
},
|
|
@@ -376,7 +376,7 @@
|
|
|
376
376
|
$extensions: {
|
|
377
377
|
'org.primer.figma': {
|
|
378
378
|
collection: 'mode',
|
|
379
|
-
|
|
379
|
+
|
|
380
380
|
group: 'syntax',
|
|
381
381
|
},
|
|
382
382
|
},
|
|
@@ -388,7 +388,7 @@
|
|
|
388
388
|
$extensions: {
|
|
389
389
|
'org.primer.figma': {
|
|
390
390
|
collection: 'mode',
|
|
391
|
-
|
|
391
|
+
|
|
392
392
|
group: 'syntax',
|
|
393
393
|
},
|
|
394
394
|
},
|
|
@@ -399,7 +399,7 @@
|
|
|
399
399
|
$extensions: {
|
|
400
400
|
'org.primer.figma': {
|
|
401
401
|
collection: 'mode',
|
|
402
|
-
|
|
402
|
+
|
|
403
403
|
group: 'syntax',
|
|
404
404
|
},
|
|
405
405
|
},
|
|
@@ -410,7 +410,7 @@
|
|
|
410
410
|
$extensions: {
|
|
411
411
|
'org.primer.figma': {
|
|
412
412
|
collection: 'mode',
|
|
413
|
-
|
|
413
|
+
|
|
414
414
|
group: 'syntax',
|
|
415
415
|
},
|
|
416
416
|
},
|
|
@@ -421,7 +421,7 @@
|
|
|
421
421
|
$extensions: {
|
|
422
422
|
'org.primer.figma': {
|
|
423
423
|
collection: 'mode',
|
|
424
|
-
|
|
424
|
+
|
|
425
425
|
group: 'syntax',
|
|
426
426
|
},
|
|
427
427
|
},
|
|
@@ -433,7 +433,7 @@
|
|
|
433
433
|
$extensions: {
|
|
434
434
|
'org.primer.figma': {
|
|
435
435
|
collection: 'mode',
|
|
436
|
-
|
|
436
|
+
|
|
437
437
|
group: 'syntax',
|
|
438
438
|
},
|
|
439
439
|
},
|
|
@@ -444,7 +444,7 @@
|
|
|
444
444
|
$extensions: {
|
|
445
445
|
'org.primer.figma': {
|
|
446
446
|
collection: 'mode',
|
|
447
|
-
|
|
447
|
+
|
|
448
448
|
group: 'syntax',
|
|
449
449
|
},
|
|
450
450
|
},
|
|
@@ -457,7 +457,7 @@
|
|
|
457
457
|
$extensions: {
|
|
458
458
|
'org.primer.figma': {
|
|
459
459
|
collection: 'mode',
|
|
460
|
-
|
|
460
|
+
|
|
461
461
|
group: 'syntax',
|
|
462
462
|
},
|
|
463
463
|
},
|
|
@@ -468,7 +468,7 @@
|
|
|
468
468
|
$extensions: {
|
|
469
469
|
'org.primer.figma': {
|
|
470
470
|
collection: 'mode',
|
|
471
|
-
|
|
471
|
+
|
|
472
472
|
group: 'syntax',
|
|
473
473
|
},
|
|
474
474
|
},
|
|
@@ -481,7 +481,7 @@
|
|
|
481
481
|
$extensions: {
|
|
482
482
|
'org.primer.figma': {
|
|
483
483
|
collection: 'mode',
|
|
484
|
-
|
|
484
|
+
|
|
485
485
|
group: 'syntax',
|
|
486
486
|
},
|
|
487
487
|
},
|
|
@@ -492,7 +492,7 @@
|
|
|
492
492
|
$extensions: {
|
|
493
493
|
'org.primer.figma': {
|
|
494
494
|
collection: 'mode',
|
|
495
|
-
|
|
495
|
+
|
|
496
496
|
group: 'syntax',
|
|
497
497
|
},
|
|
498
498
|
},
|
|
@@ -505,7 +505,7 @@
|
|
|
505
505
|
$extensions: {
|
|
506
506
|
'org.primer.figma': {
|
|
507
507
|
collection: 'mode',
|
|
508
|
-
|
|
508
|
+
|
|
509
509
|
group: 'syntax',
|
|
510
510
|
},
|
|
511
511
|
},
|
|
@@ -516,7 +516,7 @@
|
|
|
516
516
|
$extensions: {
|
|
517
517
|
'org.primer.figma': {
|
|
518
518
|
collection: 'mode',
|
|
519
|
-
|
|
519
|
+
|
|
520
520
|
group: 'syntax',
|
|
521
521
|
},
|
|
522
522
|
},
|
|
@@ -531,7 +531,7 @@
|
|
|
531
531
|
$extensions: {
|
|
532
532
|
'org.primer.figma': {
|
|
533
533
|
collection: 'mode',
|
|
534
|
-
|
|
534
|
+
|
|
535
535
|
group: 'syntax',
|
|
536
536
|
},
|
|
537
537
|
},
|
|
@@ -546,7 +546,7 @@
|
|
|
546
546
|
$extensions: {
|
|
547
547
|
'org.primer.figma': {
|
|
548
548
|
collection: 'mode',
|
|
549
|
-
|
|
549
|
+
|
|
550
550
|
group: 'syntax',
|
|
551
551
|
},
|
|
552
552
|
},
|