@cambly/syntax-core 21.17.0 → 22.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Badge/Badge.js +1 -1
- package/dist/Chip/Chip.css +13 -1639
- package/dist/Chip/Chip.css.map +1 -1
- package/dist/Chip/Chip.d.ts +9 -3
- package/dist/Chip/Chip.js +1 -5
- package/dist/RichSelect/RichSelectBox.css +13 -12
- package/dist/RichSelect/RichSelectBox.css.map +1 -1
- package/dist/RichSelect/RichSelectBox.js +3 -3
- package/dist/RichSelect/RichSelectChip.css +13 -1639
- package/dist/RichSelect/RichSelectChip.css.map +1 -1
- package/dist/RichSelect/RichSelectChip.js +2 -6
- package/dist/RichSelect/RichSelectList.css +13 -12
- package/dist/RichSelect/RichSelectList.css.map +1 -1
- package/dist/RichSelect/RichSelectList.js +5 -5
- package/dist/SelectList/SelectList.js +2 -2
- package/dist/TextField/TextField.js +2 -2
- package/dist/__chunks/{SW7VXIHS.js → 2QB4NUWI.js} +4 -2
- package/dist/__chunks/2QB4NUWI.js.map +1 -0
- package/dist/__chunks/{YOTIKAZ4.js → 5MOBRFQE.js} +4 -4
- package/dist/__chunks/{EBR6W2V2.js → B5PWI2NT.js} +15 -9
- package/dist/__chunks/B5PWI2NT.js.map +1 -0
- package/dist/__chunks/{LQQTJIBH.js → BNIBTPIA.js} +1 -1
- package/dist/__chunks/{LQQTJIBH.js.map → BNIBTPIA.js.map} +1 -1
- package/dist/__chunks/{XTV66LZO.js → LUK43ZOB.js} +2 -2
- package/dist/__chunks/{X42H56XS.js → R6OBV53M.js} +2 -2
- package/dist/__chunks/{RPXD7HFU.js → V3A22FFS.js} +2 -2
- package/dist/__chunks/{UUEKFWQM.js → YXVXB4GH.js} +2 -2
- package/dist/index.css +13 -12
- package/dist/index.css.map +1 -1
- package/dist/index.js +8 -8
- package/package.json +1 -1
- package/dist/__chunks/EBR6W2V2.js.map +0 -1
- package/dist/__chunks/SW7VXIHS.js.map +0 -1
- /package/dist/__chunks/{YOTIKAZ4.js.map → 5MOBRFQE.js.map} +0 -0
- /package/dist/__chunks/{XTV66LZO.js.map → LUK43ZOB.js.map} +0 -0
- /package/dist/__chunks/{X42H56XS.js.map → R6OBV53M.js.map} +0 -0
- /package/dist/__chunks/{RPXD7HFU.js.map → V3A22FFS.js.map} +0 -0
- /package/dist/__chunks/{UUEKFWQM.js.map → YXVXB4GH.js.map} +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/Chip/Chip.tsx","css-module:./Chip.module.css#css-module"],"sourcesContent":["import React, { forwardRef, useMemo, type ComponentProps } from \"react\";\nimport classnames from \"classnames\";\nimport Typography from \"../Typography/Typography\";\nimport styles from \"./Chip.module.css\";\nimport useIsHydrated from \"../useIsHydrated\";\nimport type InternalIcon from \"../Icon/Icon\";\nimport { type Size } from \"../constants\";\nimport textVariant from \"../Button/constants/textVariant\";\nimport {\n internalIconSize,\n materialIconSize,\n} from \"../Button/constants/iconSize\";\n\nfunction typographyColor({\n selected,\n on,\n}: {\n selected: boolean;\n on: \"lightBackground\" | \"darkBackground\";\n}): \"white\" | \"gray900\" {\n if (on === \"darkBackground\") {\n if (selected) {\n return \"gray900\";\n } else {\n return \"white\";\n }\n } else {\n if (selected) {\n return \"white\";\n } else {\n return \"gray900\";\n }\n }\n}\n\ntype ChipProps = {\n /**\n * If true, the chip will be disabled.\n */\n disabled?: boolean;\n /**\n * Sets the initial status of this chip component.\n * * `true` will display a grey chip.\n * * `false` will display a premium800 color chip.\n *\n * @defaultValue \"false\"\n */\n selected?: boolean;\n /**\n * Test id for the button\n */\n \"data-testid\"?: string;\n /**\n * The size of the chip\n *\n * * `sm`: 32px height\n * * `md`: 48px height\n *\n * @defaultValue \"sm\"\n */\n size?: (typeof Size)[0 | 1];\n /**\n * The text to be displayed on the chip\n */\n text: string;\n /**\n * Indicate whether the badge renders on a light or dark background. Changes the color of the chip\n *\n * @defaulValue `lightBackground`\n */\n on?: \"lightBackground\" | \"darkBackground\";\n /**\n * The callback to be called when the chip is clicked\n */\n onChange: React.MouseEventHandler<HTMLButtonElement>;\n /**\n * The icon to be displayed at the start of the chip.\n */\n startIcon?:\n | React.ComponentType<{ className?: string }>\n | React.ComponentType<ComponentProps<typeof InternalIcon>>;\n /**\n * The icon to be displayed at the end of the chip.\n */\n endIcon?:\n | React.ComponentType<{ className?: string }>\n | React.ComponentType<ComponentProps<typeof InternalIcon>>;\n /** forces focus ring styling */\n dangerouslyForceFocusStyles?: boolean;\n};\n/**\n * [Chip](https://cambly-syntax.vercel.app/?path=/docs/components-chip--docs) is used to show status (selected/not selected) like a toggle button.\n */\nconst Chip = forwardRef<HTMLButtonElement, ChipProps>(\n (\n {\n disabled: disabledProp = false,\n selected = false,\n size = \"sm\",\n \"data-testid\": dataTestId,\n text,\n on = \"lightBackground\",\n onChange,\n startIcon: StartIcon,\n endIcon: EndIcon,\n dangerouslyForceFocusStyles,\n }: ChipProps,\n ref,\n ) => {\n const isHydrated = useIsHydrated();\n const disabled = !isHydrated || disabledProp;\n\n const selectedChipStyle =\n on === \"lightBackground\"\n ? styles.selectedChip\n : styles.selectedChipOnDarkBackground;\n\n const deselectedChipStyle =\n on === \"lightBackground\"\n ? styles.deselectedChip\n : styles.deselectedChipOnDarkBackground;\n\n const chipStyles = classnames(styles.chip, styles.sm, {\n [selectedChipStyle]: selected,\n [deselectedChipStyle]: !selected,\n [styles.disabled]: disabled,\n [styles.forceFocus]: dangerouslyForceFocusStyles,\n });\n const iconStyles = classnames(styles.icon, {\n [styles.selectedIcon]: selected,\n });\n\n const color = useMemo(\n () => typographyColor({ selected, on }),\n [selected, on],\n );\n\n return (\n <button\n className={classnames(chipStyles, styles[size])}\n disabled={disabled}\n data-testid={dataTestId}\n ref={ref}\n type=\"button\"\n aria-pressed={selected}\n onClick={onChange}\n >\n {StartIcon && (\n <StartIcon\n className={classnames(iconStyles, materialIconSize[size])}\n color={color}\n size={internalIconSize[size]}\n />\n )}\n <Typography size={textVariant[size]} color={color} weight=\"medium\">\n {text}\n </Typography>\n {EndIcon && (\n <EndIcon\n className={classnames(iconStyles, materialIconSize[size])}\n color={color}\n size={internalIconSize[size]}\n />\n )}\n </button>\n );\n },\n);\n\nChip.displayName = \"Chip\";\n\nexport default Chip;\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/Chip/Chip.module.css\"; export default {\"chip\":\"_chip_ime1m_1\",\"disabled\":\"_disabled_ime1m_13\",\"deselectedChip\":\"_deselectedChip_ime1m_18\",\"deselectedChipOnDarkBackground\":\"_deselectedChipOnDarkBackground_ime1m_22\",\"selectedChip\":\"_selectedChip_ime1m_26\",\"selectedChipOnDarkBackground\":\"_selectedChipOnDarkBackground_ime1m_30\",\"icon\":\"_icon_ime1m_34\",\"selectedIcon\":\"_selectedIcon_ime1m_41\",\"sm\":\"_sm_ime1m_45\",\"md\":\"_md_ime1m_51\",\"forceFocus\":\"_forceFocus_ime1m_58\"}"],"mappings":";;;;;;;;;;;;;;;;AAAA,SAAgB,YAAY,eAAoC;AAChE,OAAO,gBAAgB;;;ACDiE,IAAO,sBAAQ,EAAC,QAAO,iBAAgB,YAAW,sBAAqB,kBAAiB,4BAA2B,kCAAiC,4CAA2C,gBAAe,0BAAyB,gCAA+B,0CAAyC,QAAO,kBAAiB,gBAAe,0BAAyB,MAAK,gBAAe,MAAK,gBAAe,cAAa,uBAAsB;;;AD0I5gB,SAUI,KAVJ;AA7HN,SAAS,gBAAgB;AAAA,EACvB;AAAA,EACA;AACF,GAGwB;AACtB,MAAI,OAAO,kBAAkB;AAC3B,QAAI,UAAU;AACZ,aAAO;AAAA,IACT,OAAO;AACL,aAAO;AAAA,IACT;AAAA,EACF,OAAO;AACL,QAAI,UAAU;AACZ,aAAO;AAAA,IACT,OAAO;AACL,aAAO;AAAA,IACT;AAAA,EACF;AACF;AA4DA,IAAM,OAAO;AAAA,EACX,CACE;AAAA,IACE,UAAU,eAAe;AAAA,IACzB,WAAW;AAAA,IACX,OAAO;AAAA,IACP,eAAe;AAAA,IACf;AAAA,IACA,KAAK;AAAA,IACL;AAAA,IACA,WAAW;AAAA,IACX,SAAS;AAAA,IACT;AAAA,EACF,GACA,QACG;AACH,UAAM,aAAa,cAAc;AACjC,UAAM,WAAW,CAAC,cAAc;AAEhC,UAAM,oBACJ,OAAO,oBACH,oBAAO,eACP,oBAAO;AAEb,UAAM,sBACJ,OAAO,oBACH,oBAAO,iBACP,oBAAO;AAEb,UAAM,aAAa,WAAW,oBAAO,MAAM,oBAAO,IAAI;AAAA,MACpD,CAAC,iBAAiB,GAAG;AAAA,MACrB,CAAC,mBAAmB,GAAG,CAAC;AAAA,MACxB,CAAC,oBAAO,QAAQ,GAAG;AAAA,MACnB,CAAC,oBAAO,UAAU,GAAG;AAAA,IACvB,CAAC;AACD,UAAM,aAAa,WAAW,oBAAO,MAAM;AAAA,MACzC,CAAC,oBAAO,YAAY,GAAG;AAAA,IACzB,CAAC;AAED,UAAM,QAAQ;AAAA,MACZ,MAAM,gBAAgB,EAAE,UAAU,GAAG,CAAC;AAAA,MACtC,CAAC,UAAU,EAAE;AAAA,IACf;AAEA,WACE;AAAA,MAAC;AAAA;AAAA,QACC,WAAW,WAAW,YAAY,oBAAO,IAAI,CAAC;AAAA,QAC9C;AAAA,QACA,eAAa;AAAA,QACb;AAAA,QACA,MAAK;AAAA,QACL,gBAAc;AAAA,QACd,SAAS;AAAA,QAER;AAAA,uBACC;AAAA,YAAC;AAAA;AAAA,cACC,WAAW,WAAW,YAAY,iBAAiB,IAAI,CAAC;AAAA,cACxD;AAAA,cACA,MAAM,iBAAiB,IAAI;AAAA;AAAA,UAC7B;AAAA,UAEF,oBAAC,sBAAW,MAAM,oBAAY,IAAI,GAAG,OAAc,QAAO,UACvD,gBACH;AAAA,UACC,WACC;AAAA,YAAC;AAAA;AAAA,cACC,WAAW,WAAW,YAAY,iBAAiB,IAAI,CAAC;AAAA,cACxD;AAAA,cACA,MAAM,iBAAiB,IAAI;AAAA;AAAA,UAC7B;AAAA;AAAA;AAAA,IAEJ;AAAA,EAEJ;AACF;AAEA,KAAK,cAAc;AAEnB,IAAO,eAAQ;","names":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../syntax-design-tokens/dist/js/index.js"],"sourcesContent":["/**\n * Do not edit directly\n * Generated on
|
|
1
|
+
{"version":3,"sources":["../../../syntax-design-tokens/dist/js/index.js"],"sourcesContent":["/**\n * Do not edit directly\n * Generated on Wed, 05 Mar 2025 19:53:39 GMT\n */\n\nexport const ColorBaseBlack = \"#000000\";\nexport const ColorBaseDestructive100 = \"#fef3f5\";\nexport const ColorBaseDestructive200 = \"#fad6de\";\nexport const ColorBaseDestructive300 = \"#f2a2b2\";\nexport const ColorBaseDestructive700 = \"#d32a4b\";\nexport const ColorBaseDestructive800 = \"#81162c\";\nexport const ColorBaseDestructive900 = \"#55101d\";\nexport const ColorBaseGray10 = \"#cbcbcb\"; // Used as the default color for dividers and inner strokes\nexport const ColorBaseGray30 = \"#000000\"; // For IconButton background when on top of an image\nexport const ColorBaseGray60 = \"#000000\"; // Used for icon background in classroom video grid\nexport const ColorBaseGray80 = \"#000000\"; // Used as the background for modals\nexport const ColorBaseGray100 = \"#f7f7f7\";\nexport const ColorBaseGray200 = \"#f0f0f0\"; // Used for light mode backgrounds when showing card content on top\nexport const ColorBaseGray300 = \"#d0d0d0\"; // Used for component outlines, eg: select and textfield\nexport const ColorBaseGray700 = \"#767676\"; // For secondary text in light mode\nexport const ColorBaseGray800 = \"#353535\";\nexport const ColorBaseGray900 = \"#191919\"; // Default text color, Classroom background\nexport const ColorBaseOrange100 = \"#fdf2f0\";\nexport const ColorBaseOrange200 = \"#f6cdc4\";\nexport const ColorBaseOrange300 = \"#ec9987\";\nexport const ColorBaseOrange700 = \"#c34124\";\nexport const ColorBaseOrange800 = \"#732818\";\nexport const ColorBaseOrange900 = \"#4d1a10\";\nexport const ColorBasePrimary100 = \"#eff6fa\";\nexport const ColorBasePrimary200 = \"#c1dbe7\";\nexport const ColorBasePrimary300 = \"#84b7d0\";\nexport const ColorBasePrimary700 = \"#236482\";\nexport const ColorBasePrimary800 = \"#274858\";\nexport const ColorBasePrimary900 = \"#1b303b\";\nexport const ColorBaseSuccess100 = \"#eff7f1\";\nexport const ColorBaseSuccess200 = \"#bddcc6\";\nexport const ColorBaseSuccess300 = \"#81ba92\";\nexport const ColorBaseSuccess700 = \"#397b4d\";\nexport const ColorBaseSuccess800 = \"#2d4936\";\nexport const ColorBaseSuccess900 = \"#1e3124\";\nexport const ColorBasePurple100 = \"#f9f5fa\";\nexport const ColorBasePurple200 = \"#e8dceb\";\nexport const ColorBasePurple300 = \"#cdb4d3\";\nexport const ColorBasePurple700 = \"#8b5f95\";\nexport const ColorBasePurple800 = \"#523b58\";\nexport const ColorBasePurple900 = \"#37273b\";\nexport const ColorBaseYellow100 = \"#fdf5d9\";\nexport const ColorBaseYellow200 = \"#fbe8a3\";\nexport const ColorBaseYellow300 = \"#f8d663\";\nexport const ColorBaseYellow700 = \"#ffc929\";\nexport const ColorBaseYellow800 = \"#765f1c\";\nexport const ColorBaseYellow900 = \"#3b3009\";\nexport const ColorBaseWhite = \"#ffffff\";\nexport const ColorCambioBlack = \"#050500\";\nexport const ColorCambioWhite40 = \"#ffffff\";\nexport const ColorCambioWhite70 = \"#ffffff\";\nexport const ColorCambioWhite100 = \"#ffffff\";\nexport const ColorCambioGray100 = \"#faf4eb\";\nexport const ColorCambioGray200 = \"#e4dbd3\";\nexport const ColorCambioGray270 = \"#e4dbd3\";\nexport const ColorCambioGray300 = \"#beb4ab\";\nexport const ColorCambioGray370 = \"#beb4ab\";\nexport const ColorCambioGray700 = \"#5e5952\";\nexport const ColorCambioGray800 = \"#363432\";\nexport const ColorCambioGray870 = \"#5e5952\";\nexport const ColorCambioGray900 = \"#262625\";\nexport const ColorCambioDestructive100 = \"#ffdeda\";\nexport const ColorCambioDestructive300 = \"#ff8071\";\nexport const ColorCambioDestructive370 = \"#ff8071\";\nexport const ColorCambioDestructive700 = \"#c93f32\";\nexport const ColorCambioDestructive770 = \"#c93f32\";\nexport const ColorCambioDestructive900 = \"#6d0002\";\nexport const ColorCambioSuccess100 = \"#daf2c8\";\nexport const ColorCambioSuccess300 = \"#84ce64\";\nexport const ColorCambioSuccess370 = \"#84ce64\";\nexport const ColorCambioSuccess700 = \"#3c7f20\";\nexport const ColorCambioSuccess770 = \"#3c7f20\";\nexport const ColorCambioSuccess900 = \"#103e00\";\nexport const ColorCambioRed = \"#f56e56\";\nexport const ColorCambioOrange = \"#ff8f57\";\nexport const ColorCambioTan = \"#ffb47d\";\nexport const ColorCambioCream = \"#fffad1\";\nexport const ColorCambioPurple = \"#6840a8\";\nexport const ColorCambioLilac = \"#b59ef0\";\nexport const ColorCambioThistle = \"#d69ca4\";\nexport const ColorCambioPink = \"#ffccea\";\nexport const ColorCambioNavy = \"#191142\";\nexport const ColorCambioTeal = \"#44a6cf\";\nexport const ColorCambioSlate = \"#7c9fc6\";\nexport const ColorCambioSky = \"#b1e8fc\";\nexport const ColorCambioYellow700 = \"#ffe733\";\nexport const ColorCambioTransparentFull = \"#000000\";\nexport const Elevation400 = \"0px 16px 32px 0px #00000040\";\nexport const SyntaxFontSansSerif = \"-apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif\";\nexport const ShadowInteractive = \"0px 3px 16px 0px rgba(144, 134, 130, 0.05), 0px 2px 30px 0px rgba(144, 134, 130, 0.02)\";\n"],"mappings":";;;AASO,IAAM,0BAA0B;AAUhC,IAAM,mBAAmB;AAqCzB,IAAM,sBAAsB;","names":[]}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client"
|
|
2
2
|
import {
|
|
3
3
|
Chip_default
|
|
4
|
-
} from "./
|
|
4
|
+
} from "./B5PWI2NT.js";
|
|
5
5
|
import {
|
|
6
6
|
RichSelectItem_default
|
|
7
7
|
} from "./ODMJANSX.js";
|
|
@@ -31,4 +31,4 @@ var RichSelectChip_default = forwardRef(
|
|
|
31
31
|
export {
|
|
32
32
|
RichSelectChip_default
|
|
33
33
|
};
|
|
34
|
-
//# sourceMappingURL=
|
|
34
|
+
//# sourceMappingURL=LUK43ZOB.js.map
|
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
} from "./N7G37EKF.js";
|
|
17
17
|
import {
|
|
18
18
|
RichSelectChip_default
|
|
19
|
-
} from "./
|
|
19
|
+
} from "./LUK43ZOB.js";
|
|
20
20
|
import {
|
|
21
21
|
RichSelectItemContext,
|
|
22
22
|
RichSelect_module_default
|
|
@@ -208,4 +208,4 @@ export {
|
|
|
208
208
|
RichSelectBoxContext,
|
|
209
209
|
RichSelectBox_default
|
|
210
210
|
};
|
|
211
|
-
//# sourceMappingURL=
|
|
211
|
+
//# sourceMappingURL=R6OBV53M.js.map
|
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
ColorBaseDestructive700,
|
|
7
7
|
ColorBaseGray700,
|
|
8
8
|
ColorCambioWhite100
|
|
9
|
-
} from "./
|
|
9
|
+
} from "./BNIBTPIA.js";
|
|
10
10
|
import {
|
|
11
11
|
Focus_module_default
|
|
12
12
|
} from "./KKADUD65.js";
|
|
@@ -140,4 +140,4 @@ SelectList.Option = SelectOption_default;
|
|
|
140
140
|
export {
|
|
141
141
|
SelectList
|
|
142
142
|
};
|
|
143
|
-
//# sourceMappingURL=
|
|
143
|
+
//# sourceMappingURL=V3A22FFS.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client"
|
|
2
2
|
import {
|
|
3
3
|
Badge_default
|
|
4
|
-
} from "./
|
|
4
|
+
} from "./2QB4NUWI.js";
|
|
5
5
|
import {
|
|
6
6
|
Box_default
|
|
7
7
|
} from "./X552U42S.js";
|
|
@@ -118,4 +118,4 @@ function TextField({
|
|
|
118
118
|
export {
|
|
119
119
|
TextField
|
|
120
120
|
};
|
|
121
|
-
//# sourceMappingURL=
|
|
121
|
+
//# sourceMappingURL=YXVXB4GH.js.map
|
package/dist/index.css
CHANGED
|
@@ -2660,51 +2660,52 @@
|
|
|
2660
2660
|
}
|
|
2661
2661
|
|
|
2662
2662
|
/* css-module:/home/runner/work/syntax/syntax/packages/syntax-core/src/Chip/Chip.module.css/#css-module-data */
|
|
2663
|
-
.
|
|
2663
|
+
._chip_ime1m_1 {
|
|
2664
2664
|
border: none;
|
|
2665
2665
|
border-radius: 8px;
|
|
2666
2666
|
display: flex;
|
|
2667
|
+
gap: 4px;
|
|
2667
2668
|
align-items: center;
|
|
2668
2669
|
justify-content: center;
|
|
2669
2670
|
text-align: center;
|
|
2670
2671
|
cursor: pointer;
|
|
2671
2672
|
box-sizing: border-box;
|
|
2672
2673
|
}
|
|
2673
|
-
.
|
|
2674
|
+
._disabled_ime1m_13 {
|
|
2674
2675
|
filter: opacity(50%);
|
|
2675
2676
|
cursor: auto;
|
|
2676
2677
|
}
|
|
2677
|
-
.
|
|
2678
|
+
._deselectedChip_ime1m_18 {
|
|
2678
2679
|
background-color: var(--color-cambio-gray-370);
|
|
2679
2680
|
}
|
|
2680
|
-
.
|
|
2681
|
+
._deselectedChipOnDarkBackground_ime1m_22 {
|
|
2681
2682
|
background-color: var(--color-cambio-gray-870);
|
|
2682
2683
|
}
|
|
2683
|
-
.
|
|
2684
|
+
._selectedChip_ime1m_26 {
|
|
2684
2685
|
background-color: var(--color-cambio-gray-800);
|
|
2685
2686
|
}
|
|
2686
|
-
.
|
|
2687
|
+
._selectedChipOnDarkBackground_ime1m_30 {
|
|
2687
2688
|
background-color: var(--color-cambio-gray-200);
|
|
2688
2689
|
}
|
|
2689
|
-
.
|
|
2690
|
+
._icon_ime1m_34 {
|
|
2690
2691
|
height: 24px !important;
|
|
2691
2692
|
width: 24px !important;
|
|
2692
2693
|
}
|
|
2693
|
-
.
|
|
2694
|
+
._selectedIcon_ime1m_41 {
|
|
2694
2695
|
color: #fff;
|
|
2695
2696
|
}
|
|
2696
|
-
.
|
|
2697
|
+
._sm_ime1m_45 {
|
|
2697
2698
|
height: 32px;
|
|
2698
2699
|
min-width: 40px;
|
|
2699
2700
|
padding: 8px 12px;
|
|
2700
2701
|
}
|
|
2701
|
-
.
|
|
2702
|
+
._md_ime1m_51 {
|
|
2702
2703
|
height: 48px;
|
|
2703
2704
|
min-width: 56px;
|
|
2704
2705
|
padding: 8px 16px;
|
|
2705
2706
|
}
|
|
2706
|
-
.
|
|
2707
|
-
.
|
|
2707
|
+
._chip_ime1m_1:focus-visible,
|
|
2708
|
+
._forceFocus_ime1m_58 {
|
|
2708
2709
|
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
|
|
2709
2710
|
box-shadow: 0 0 0 4px #000;
|
|
2710
2711
|
outline: solid 2px #fff;
|