@bbodek/internal-ui 0.0.21 → 0.0.22
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/components/Button/IconButton/constants/index.d.ts +1 -1
- package/dist/components/Checkbox/constants/index.d.ts +3 -3
- package/dist/components/Modal/shared/Modal.d.ts.map +1 -1
- package/dist/components/Radio/constants/index.d.ts +3 -3
- package/dist/components/Table/constants/index.d.ts +5 -5
- package/dist/components/Toggle/constants/index.d.ts +3 -3
- package/dist/components/shared/components/InputTriggerWrapper/constants/index.d.ts +3 -3
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/package.json +2 -2
|
@@ -2,7 +2,7 @@ import { IconButtonTheme } from '../../../../components/Button/IconButton/types'
|
|
|
2
2
|
export declare const ICON_BUTTON_THEMES: {
|
|
3
3
|
readonly HOVER_GRAY: "hover-gray";
|
|
4
4
|
readonly HOVER_WHITE: "hover-white";
|
|
5
|
-
readonly BG_WHITE: "bg-white";
|
|
5
|
+
readonly BG_WHITE: "in-bg-white";
|
|
6
6
|
};
|
|
7
7
|
export declare const ICON_BUTTON_COLORS_STYLES: Record<IconButtonTheme, string>;
|
|
8
8
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -13,15 +13,15 @@ export declare const CHECKBOX_ICON_SIZE_STYLES: Record<CheckboxSize, string>;
|
|
|
13
13
|
export declare const CHECKBOX_LABEL_SIZE_VARIANTS: Record<CheckboxSize, TypographyVariants>;
|
|
14
14
|
export declare const CHECKBOX_STYLES: {
|
|
15
15
|
readonly default: {
|
|
16
|
-
readonly icon: "border-gray-02 bg-white";
|
|
16
|
+
readonly icon: "border-gray-02 in-bg-white";
|
|
17
17
|
readonly label: "text-black";
|
|
18
18
|
};
|
|
19
19
|
readonly selected: {
|
|
20
|
-
readonly icon: "peer-checked:border-primary-05 peer-checked:bg-primary-05";
|
|
20
|
+
readonly icon: "peer-checked:border-primary-05 peer-checked:in-bg-primary-05";
|
|
21
21
|
readonly label: "peer-checked:text-black";
|
|
22
22
|
};
|
|
23
23
|
readonly disabled: {
|
|
24
|
-
readonly icon: "peer-disabled:border-gray-02 peer-disabled:bg-gray-02";
|
|
24
|
+
readonly icon: "peer-disabled:border-gray-02 peer-disabled:in-bg-gray-02";
|
|
25
25
|
readonly label: "peer-disabled:text-gray-05";
|
|
26
26
|
};
|
|
27
27
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Modal.d.ts","sourceRoot":"","sources":["../../../../src/components/Modal/shared/Modal.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Modal.d.ts","sourceRoot":"","sources":["../../../../src/components/Modal/shared/Modal.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAI1C,OAAO,EAAE,UAAU,EAAE,MAAM,iCAAiC,CAAC;AAG7D,QAAA,MAAM,KAAK;4CAKR,iBAAiB,CAAC,UAAU,CAAC;;;;CAa/B,CAAC;AAEF,eAAe,KAAK,CAAC"}
|
|
@@ -13,15 +13,15 @@ export declare const RADIO_ICON_SIZE_STYLES: Record<RadioSize, string>;
|
|
|
13
13
|
export declare const RADIO_LABEL_SIZE_VARIANTS: Record<RadioSize, TypographyVariants>;
|
|
14
14
|
export declare const RADIO_STYLES: {
|
|
15
15
|
readonly default: {
|
|
16
|
-
readonly icon: "before:bg-white border-gray-02 bg-white";
|
|
16
|
+
readonly icon: "before:in-bg-white border-gray-02 in-bg-white";
|
|
17
17
|
readonly label: "text-black";
|
|
18
18
|
};
|
|
19
19
|
readonly selected: {
|
|
20
|
-
readonly icon: "peer-checked:before:bg-primary-05 peer-checked:border-primary-05";
|
|
20
|
+
readonly icon: "peer-checked:before:in-bg-primary-05 peer-checked:border-primary-05";
|
|
21
21
|
readonly label: "peer-checked:text-black";
|
|
22
22
|
};
|
|
23
23
|
readonly disabled: {
|
|
24
|
-
readonly icon: "peer-disabled:before:bg-gray-02 peer-disabled:border-gray-02";
|
|
24
|
+
readonly icon: "peer-disabled:before:in-bg-gray-02 peer-disabled:border-gray-02";
|
|
25
25
|
readonly label: "peer-disabled:text-gray-05";
|
|
26
26
|
};
|
|
27
27
|
};
|
|
@@ -10,16 +10,16 @@ export declare const TABLE_CELL_ROLES: {
|
|
|
10
10
|
};
|
|
11
11
|
export declare const TABLE_ROW_STYLES: {
|
|
12
12
|
readonly head: "text-body-14-m border-gray-03 border-b first:[&_.cell:first-child]:rounded-tl-8 first:[&_.cell:last-child]:rounded-tr-8 h-8";
|
|
13
|
-
readonly body: "text-body-14-r hover:bg-gray-01 last:[&_.cell]:border-0 [&_.cell]:border-b";
|
|
13
|
+
readonly body: "text-body-14-r hover:in-bg-gray-01 last:[&_.cell]:border-0 [&_.cell]:border-b";
|
|
14
14
|
};
|
|
15
15
|
export declare const TABLE_CELL_ROLE_COMMON_STYLES: {
|
|
16
|
-
readonly head: "bg-gray-02 text-gray-06";
|
|
16
|
+
readonly head: "in-bg-gray-02 text-gray-06";
|
|
17
17
|
readonly body: "py-2.5 min-h-full flex-h-stack items-center";
|
|
18
18
|
};
|
|
19
19
|
export declare const TABLE_CELL_STYLES: {
|
|
20
|
-
readonly columnheader: "bg-gray-02 text-gray-06 h-full py-1.5";
|
|
20
|
+
readonly columnheader: "in-bg-gray-02 text-gray-06 h-full py-1.5";
|
|
21
21
|
readonly cell: "py-2.5 min-h-full flex-h-stack items-center text-black border-gray-01";
|
|
22
|
-
readonly rowheader: "py-2.5 min-h-full flex-h-stack items-center bg-gray-02 text-gray-06 border-gray-03";
|
|
22
|
+
readonly rowheader: "py-2.5 min-h-full flex-h-stack items-center in-bg-gray-02 text-gray-06 border-gray-03";
|
|
23
23
|
};
|
|
24
24
|
export declare const TABLE_CELL_INPUT_STATE: {
|
|
25
25
|
readonly DEFAULT: "DEFAULT";
|
|
@@ -31,6 +31,6 @@ export declare const TABLE_CELL_INPUT_STYLES: {
|
|
|
31
31
|
readonly DEFAULT: "text-body-14-r border border-transparent text-black placeholder-gray-04";
|
|
32
32
|
readonly FOCUS: "focus:outline-none focus:border-primary-05";
|
|
33
33
|
readonly ERROR: "group-[.error]:text-red-04 group-[.error]:border-red-04 group-[.error]:focus:border-red-04";
|
|
34
|
-
readonly DISABLED: "disabled:text-gray-05 disabled:border-gray-01 disabled:bg-gray-01 disabled:cursor-not-allowed disabled:placeholder-gray-05";
|
|
34
|
+
readonly DISABLED: "disabled:text-gray-05 disabled:border-gray-01 disabled:in-bg-gray-01 disabled:cursor-not-allowed disabled:placeholder-gray-05";
|
|
35
35
|
};
|
|
36
36
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -14,15 +14,15 @@ export declare const TOGGLE_ICON_SIZE_STYLES: Record<ToggleSize, string>;
|
|
|
14
14
|
export declare const TOGGLE_LABEL_SIZE_VARIANTS: Record<ToggleSize, TypographyVariants>;
|
|
15
15
|
export declare const TOGGLE_STYLES: {
|
|
16
16
|
readonly default: {
|
|
17
|
-
readonly icon: "bg-gray-03 before:bg-white before:-translate-x-1/2";
|
|
17
|
+
readonly icon: "in-bg-gray-03 before:in-bg-white before:-translate-x-1/2";
|
|
18
18
|
readonly label: "";
|
|
19
19
|
};
|
|
20
20
|
readonly selected: {
|
|
21
|
-
readonly icon: "peer-checked:bg-primary-05 peer-checked:before:translate-x-1/2";
|
|
21
|
+
readonly icon: "peer-checked:in-bg-primary-05 peer-checked:before:translate-x-1/2";
|
|
22
22
|
readonly label: "";
|
|
23
23
|
};
|
|
24
24
|
readonly disabled: {
|
|
25
|
-
readonly icon: "peer-disabled:bg-gray-02 peer-disabled:before:bg-gray-01";
|
|
25
|
+
readonly icon: "peer-disabled:in-bg-gray-02 peer-disabled:before:in-bg-gray-01";
|
|
26
26
|
readonly label: "peer-disabled:text-gray-05";
|
|
27
27
|
};
|
|
28
28
|
};
|
|
@@ -11,8 +11,8 @@ export declare const INPUT_TRIGGER_STATES: {
|
|
|
11
11
|
readonly DISABLED: "DISABLED";
|
|
12
12
|
};
|
|
13
13
|
export declare const INPUT_TRIGGER_STATE_STYLES: {
|
|
14
|
-
readonly DEFAULT: "border-gray-02 bg-white text-black";
|
|
15
|
-
readonly ERROR: "border-red-04 bg-white";
|
|
16
|
-
readonly DISABLED: "bg-gray-02 text-gray-05 cursor-not-allowed border-gray-02";
|
|
14
|
+
readonly DEFAULT: "border-gray-02 in-bg-white text-black";
|
|
15
|
+
readonly ERROR: "border-red-04 in-bg-white";
|
|
16
|
+
readonly DISABLED: "in-bg-gray-02 text-gray-05 cursor-not-allowed border-gray-02";
|
|
17
17
|
};
|
|
18
18
|
//# sourceMappingURL=index.d.ts.map
|