1mpacto-react-ui 0.0.5 → 0.0.7

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.
Files changed (59) hide show
  1. package/dist/assets/core.css +1 -0
  2. package/dist/assets/fonts/Inter-Regular.ttf +0 -0
  3. package/dist/assets/fonts/Lato-Regular.ttf +0 -0
  4. package/dist/assets/icons/arrow-narrow-down.svg +3 -0
  5. package/dist/assets/style.css +1 -0
  6. package/dist/index.d.ts +2 -2
  7. package/dist/index.es.js +20503 -384
  8. package/dist/index.es.js.map +1 -1
  9. package/dist/index.umd.js +76 -9
  10. package/dist/index.umd.js.map +1 -1
  11. package/dist/src/components/Badges/Badges.d.ts +4 -0
  12. package/dist/src/components/Breadcrumbs/Breadcrumbs.d.ts +5 -0
  13. package/dist/src/components/Button/Button.d.ts +4 -0
  14. package/dist/src/components/ButtonIcon/ButtonIcon.d.ts +4 -0
  15. package/dist/src/components/Calendar/Calendar.d.ts +42 -0
  16. package/dist/src/components/Calendar/CalendarButton.d.ts +8 -0
  17. package/dist/src/components/Calendar/CalendarCell.d.ts +9 -0
  18. package/dist/src/components/Calendar/CalendarMonth.d.ts +9 -0
  19. package/dist/src/components/Calendar/CalendarRange.d.ts +16 -0
  20. package/dist/src/components/Calendar/CalendarYear.d.ts +15 -0
  21. package/dist/src/components/Chips/Chips.d.ts +4 -0
  22. package/dist/src/components/DatePicker/DatePicker.d.ts +16 -0
  23. package/dist/src/components/DatePicker/DateRangePicker.d.ts +17 -0
  24. package/dist/src/components/DatePicker/FilterDate.d.ts +19 -0
  25. package/dist/src/components/Input/InputFloatingInner.d.ts +4 -0
  26. package/dist/src/components/Input/InputReguler.d.ts +4 -0
  27. package/dist/src/components/Pagination/Pagination.d.ts +19 -0
  28. package/dist/src/components/Popover/Popover.d.ts +5 -0
  29. package/dist/src/components/RadioCheckbox/RadioCheckbox.d.ts +4 -0
  30. package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.d.ts +4 -0
  31. package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.d.ts +4 -0
  32. package/dist/src/components/SelectDropdownContainer/styleConfig.d.ts +4 -0
  33. package/dist/src/components/Switch/Switch.d.ts +12 -0
  34. package/dist/src/components/Table/Table.d.ts +6 -0
  35. package/dist/src/components/Tabs/TabPanel.d.ts +12 -0
  36. package/dist/src/components/Tabs/Tabs.d.ts +14 -0
  37. package/dist/src/components/Virtualization/ListVirtualization.d.ts +5 -0
  38. package/dist/src/components/Virtualization/TableVirtualization.d.ts +5 -0
  39. package/dist/src/components/index.d.ts +32 -0
  40. package/dist/src/config/components/borderRadius.d.ts +12 -0
  41. package/dist/src/config/components/gap.d.ts +51 -0
  42. package/dist/src/config/components/typography.d.ts +37 -0
  43. package/dist/src/config/tailwind/index.d.ts +4 -0
  44. package/dist/src/config/tailwind/typography.d.ts +7 -0
  45. package/dist/src/interfaces/components/Badges/index.d.ts +10 -0
  46. package/dist/src/interfaces/components/Breadcrumbs/index.d.ts +19 -0
  47. package/dist/src/interfaces/components/Button/index.d.ts +10 -0
  48. package/dist/src/interfaces/components/ButtonIcon/index.d.ts +8 -0
  49. package/dist/src/interfaces/components/Chips/index.d.ts +11 -0
  50. package/dist/src/interfaces/components/Input/index.d.ts +25 -0
  51. package/dist/src/interfaces/components/Popover/index.d.ts +22 -0
  52. package/dist/src/interfaces/components/RadioCheckbox/RadioCheckbox.d.ts +17 -0
  53. package/dist/src/interfaces/components/RadioCheckbox/RadioCheckboxLabel.d.ts +16 -0
  54. package/dist/src/interfaces/components/SelectDropdownContainer/index.d.ts +44 -0
  55. package/dist/src/interfaces/components/Table/index.d.ts +64 -0
  56. package/dist/src/interfaces/components/Virtualization/ListVirtualization.d.ts +36 -0
  57. package/dist/src/interfaces/components/Virtualization/TableVirtualization.d.ts +36 -0
  58. package/package.json +85 -85
  59. package/dist/style.css +0 -1
@@ -0,0 +1,44 @@
1
+ import { ReactNode } from 'react';
2
+ import { Props as SelectProps, ActionMeta } from 'react-select';
3
+ import { AutoPlacementOptions, FlipOptions } from '@floating-ui/react';
4
+
5
+ export interface ISelectDropdownContainer extends SelectProps {
6
+ width?: number | string;
7
+ children: ((params: IChildrenSelectDropdownContainer) => ReactNode) | ((params: IChildrenSelectDropdownContainer) => ReactNode[]);
8
+ classNameContainer?: string;
9
+ classNameContainerShowSelect?: string;
10
+ classNameContainerSelect?: string;
11
+ classNameLabelError?: string;
12
+ error?: string;
13
+ onChange?: (newValue: unknown, actionMeta: ActionMeta<unknown>) => void;
14
+ externalValue?: boolean;
15
+ defaultValueButtonDropdown?: object | unknown[];
16
+ autoClose?: boolean;
17
+ onMenuOpen?: () => void;
18
+ autoCloseOutside?: boolean;
19
+ styleInnerPopper?: React.CSSProperties;
20
+ onMenuClose?: () => void;
21
+ zIndexPopper?: number;
22
+ id?: string;
23
+ idPopover?: string;
24
+ useAutoPlacement?: boolean;
25
+ flipOptions?: FlipOptions;
26
+ autoPlacementOptions?: AutoPlacementOptions;
27
+ withSearch?: boolean;
28
+ }
29
+ export interface IChildrenSelectDropdownContainer {
30
+ selectValue: unknown;
31
+ setSelectValue: React.Dispatch<unknown>;
32
+ handlerClose: () => void;
33
+ handlerShow: () => void;
34
+ show: boolean;
35
+ setShow: React.Dispatch<React.SetStateAction<boolean>>;
36
+ }
37
+ export interface IRefSelectDropdownContainer {
38
+ selectValue: unknown;
39
+ setSelectValue: React.Dispatch<React.SetStateAction<object | unknown[]>>;
40
+ handlerClose: () => void;
41
+ handlerShow: () => void;
42
+ show: boolean;
43
+ setShow: React.Dispatch<React.SetStateAction<boolean>>;
44
+ }
@@ -0,0 +1,64 @@
1
+ import { Table as ITableTanstack, Row, RowData, ColumnDef } from '@tanstack/react-table';
2
+ import { HTMLAttributes, ReactNode } from 'react';
3
+ import { ITableVirtualization } from '../Virtualization/TableVirtualization';
4
+
5
+ export type ITableColumnDef<T = unknown> = ColumnDef<T>;
6
+ export interface ITable<T = unknown> {
7
+ tableInstance: ITableTanstack<T>;
8
+ classNameWrapperTable?: string;
9
+ classNameTable?: string;
10
+ collapseAll?: boolean;
11
+ handlerRowClick?: (original: RowData, row: Row<T>) => void;
12
+ privillageRowClick?: boolean;
13
+ virtualization?: boolean;
14
+ virtualizationProps?: ITableVirtualization;
15
+ headerId?: string;
16
+ tbodyTrId?: (row: Row<T>) => string | undefined;
17
+ maxHeight?: number;
18
+ idCalculateHeight?: string;
19
+ kind?: 'laba-reguler' | 'payhere-reguler';
20
+ componentSortASC?: Element | ReactNode | ReactNode[];
21
+ componentSortDESC?: Element | ReactNode | ReactNode[];
22
+ scrollTop?: boolean;
23
+ }
24
+ export interface INonVirtualization<T = unknown> {
25
+ tableInstance: ITableTanstack<T>;
26
+ classNameWrapperTable?: string;
27
+ classNameTable?: string;
28
+ handlerRowClick?: (original: RowData, row: Row<T>) => void;
29
+ privillageRowClick?: boolean;
30
+ headerId?: string;
31
+ tbodyTrId: (row: Row<T>) => string | undefined;
32
+ maxHeight?: number;
33
+ idCalculateHeight?: string;
34
+ componentSortASC: Element | ReactNode | ReactNode[];
35
+ componentSortDESC: Element | ReactNode | ReactNode[];
36
+ classNamePointer: string;
37
+ }
38
+ export interface IVirtualization<T = unknown> {
39
+ tableInstance: ITableTanstack<T>;
40
+ classNameWrapperTable?: string;
41
+ handlerRowClick?: (original: RowData, row: Row<T>) => void;
42
+ privillageRowClick?: boolean;
43
+ virtualizationProps?: ITableVirtualization;
44
+ headerId?: string;
45
+ tbodyTrId: (row: Row<T>) => string | undefined;
46
+ classNameTable?: string;
47
+ componentSortASC: Element | ReactNode | ReactNode[];
48
+ componentSortDESC: Element | ReactNode | ReactNode[];
49
+ classNamePointer: string;
50
+ }
51
+ export interface IVirtualizationHead extends HTMLAttributes<HTMLTableSectionElement> {
52
+ context?: {
53
+ headerId?: string;
54
+ [key: string]: unknown;
55
+ };
56
+ [key: string]: unknown;
57
+ }
58
+ export interface IVirtualizationTable extends HTMLAttributes<HTMLTableElement> {
59
+ context?: {
60
+ classNameTable?: string;
61
+ [key: string]: unknown;
62
+ };
63
+ [key: string]: unknown;
64
+ }
@@ -0,0 +1,36 @@
1
+ import { ReactNode } from 'react';
2
+ import { Components } from 'react-virtuoso';
3
+
4
+ export interface IStyleHeight {
5
+ height?: number;
6
+ }
7
+ export interface IWrapperProps {
8
+ children: (props: Record<string, unknown>) => ReactNode;
9
+ [key: string]: unknown;
10
+ }
11
+ export interface IItemProps {
12
+ children: ReactNode;
13
+ [key: string]: unknown;
14
+ }
15
+ export interface IListVirtualization {
16
+ classNameContainer?: string;
17
+ computeItemKey?: () => string;
18
+ itemSize?: (el: HTMLElement) => number;
19
+ totalCount?: number;
20
+ typeHight: 'min-max' | 'container';
21
+ minHeightItem?: number;
22
+ maxHeightTable?: number;
23
+ minLengthItem?: number;
24
+ itemContent: (Wrapper: React.ComponentType<IWrapperProps>, index: number, data: unknown, context: unknown) => ReactNode;
25
+ typeCalculateItemSize?: 'auto' | 'manual';
26
+ itemSizeNames: string[];
27
+ overscan?: (value?: number) => number;
28
+ component?: Components;
29
+ idContainer?: string;
30
+ triggerCalCulateContainer?: number | string | boolean | object | Date;
31
+ accumulationHeight?: number;
32
+ delayTriggerCalculateHeight?: number;
33
+ increaseViewportBy?: (value?: number) => number;
34
+ context?: object;
35
+ endReached?: (value: number) => void;
36
+ }
@@ -0,0 +1,36 @@
1
+ import { ReactNode } from 'react';
2
+ import { TableComponents } from 'react-virtuoso';
3
+
4
+ export interface IStyleHeight {
5
+ height?: number;
6
+ }
7
+ export interface IWrapperProps {
8
+ children: (props: Record<string, unknown>) => ReactNode;
9
+ [key: string]: unknown;
10
+ }
11
+ export interface ITableRowProps {
12
+ children: ReactNode;
13
+ [key: string]: unknown;
14
+ }
15
+ export interface ITableVirtualization {
16
+ classNameContainer?: string;
17
+ computeItemKey?: () => string;
18
+ itemSize?: (el: HTMLElement) => number;
19
+ totalCount?: number;
20
+ typeHight: 'min-max' | 'container';
21
+ minHeightItem?: number;
22
+ maxHeightTable?: number;
23
+ minLengthItem?: number;
24
+ fixedHeaderContent: (() => ReactNode) | (() => ReactNode[]);
25
+ itemContent: (Wrapper: React.ComponentType<IWrapperProps>, index: number, data: unknown, context: unknown) => ReactNode;
26
+ typeCalculateItemSize?: 'auto' | 'manual';
27
+ itemSizeNames: string[];
28
+ overscan?: (value?: number) => number;
29
+ component?: TableComponents;
30
+ idContainer?: string;
31
+ triggerCalCulateContainer?: number | string | boolean | object | Date;
32
+ accumulationHeight?: number;
33
+ delayTriggerCalculateHeight?: number;
34
+ increaseViewportBy?: (value?: number) => number;
35
+ context?: object;
36
+ }
package/package.json CHANGED
@@ -1,85 +1,85 @@
1
- {
2
- "name": "1mpacto-react-ui",
3
- "private": false,
4
- "version": "0.0.5",
5
- "type": "module",
6
- "scripts": {
7
- "dev": "vite",
8
- "build": "tsc -b && vite build && npm run build:css",
9
- "build:css": "tailwindcss -i ./src/styles/index.scss -o ./dist/style.css --minify",
10
- "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
11
- "preview": "vite preview",
12
- "prepare": "husky && npm run build"
13
- },
14
- "devDependencies": {
15
- "@types/node": "^20.14.10",
16
- "@types/react": ">=17.0.0 <19.0.0",
17
- "@types/react-dom": ">=17.0.0 <19.0.0",
18
- "@typescript-eslint/eslint-plugin": "^7.13.1",
19
- "@typescript-eslint/parser": "^7.13.1",
20
- "@vitejs/plugin-react-swc": "^3.5.0",
21
- "autoprefixer": "^10.4.19",
22
- "eslint": "^8.57.0",
23
- "eslint-config-prettier": "^9.1.0",
24
- "eslint-plugin-prettier": "^5.1.3",
25
- "eslint-plugin-react": "^7.34.3",
26
- "eslint-plugin-react-hooks": "^4.6.2",
27
- "eslint-plugin-react-refresh": "^0.4.7",
28
- "husky": "^9.0.11",
29
- "lint-staged": "^15.2.7",
30
- "postcss": "^8.4.39",
31
- "prettier": "^3.3.2",
32
- "react": ">=17.0.0 <19.0.0",
33
- "react-dom": ">=17.0.0 <19.0.0",
34
- "sass": "^1.77.6",
35
- "tailwindcss": "^3.4.4",
36
- "typescript": "^5.2.2",
37
- "vite": "^5.3.1",
38
- "vite-plugin-dts": "^3.9.1"
39
- },
40
- "peerDependencies": {
41
- "@types/react": ">=17.0.0 <19.0.0",
42
- "@types/react-dom": ">=17.0.0 <19.0.0",
43
- "react": ">=17.0.0 <19.0.0",
44
- "react-dom": ">=17.0.0 <19.0.0"
45
- },
46
- "main": "dist/index.umd.js",
47
- "module": "dist/index.es.js",
48
- "types": "dist/index.d.ts",
49
- "exports": {
50
- ".": {
51
- "import": "./dist/index.es.js",
52
- "require": "./dist/index.umd.js",
53
- "types": "./dist/index.d.ts"
54
- },
55
- "./dist/style.css": {
56
- "import": "./dist/style.css",
57
- "require": "./dist/style.css"
58
- }
59
- },
60
- "files": [
61
- "/dist"
62
- ],
63
- "publishConfig": {
64
- "access": "public"
65
- },
66
- "lint-staged": {
67
- "*.{js,jsx,ts,tsx}": [
68
- "eslint --quiet --fix"
69
- ],
70
- "*.{json,js,ts,jsx,tsx,html}": [
71
- "prettier --write --ignore-unknown"
72
- ]
73
- },
74
- "dependencies": {
75
- "@material-tailwind/react": "^2.1.9",
76
- "@rehookify/datepicker": "^6.6.4",
77
- "@tanstack/react-table": "^8.19.2",
78
- "chart.js": "^4.4.3",
79
- "react-chartjs-2": "^5.2.0",
80
- "react-number-format": "^5.4.0",
81
- "react-select": "^5.8.0",
82
- "react-select-async-paginate": "^0.7.4",
83
- "react-virtuoso": "^4.7.11"
84
- }
85
- }
1
+ {
2
+ "name": "1mpacto-react-ui",
3
+ "private": false,
4
+ "version": "0.0.7",
5
+ "type": "module",
6
+ "scripts": {
7
+ "dev": "vite",
8
+ "build": "tsc -b && vite build && npm run build:css",
9
+ "build:css": "tailwindcss -i ./src/styles/index.scss -o ./dist/assets/core.css --minify",
10
+ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
11
+ "preview": "vite preview",
12
+ "prepare": "husky && npm run build"
13
+ },
14
+ "devDependencies": {
15
+ "@types/node": "^20.14.10",
16
+ "@types/react": ">=17.0.0 <19.0.0",
17
+ "@types/react-dom": ">=17.0.0 <19.0.0",
18
+ "@typescript-eslint/eslint-plugin": "^7.13.1",
19
+ "@typescript-eslint/parser": "^7.13.1",
20
+ "@vitejs/plugin-react-swc": "^3.5.0",
21
+ "autoprefixer": "^10.4.19",
22
+ "eslint": "^8.57.0",
23
+ "eslint-config-prettier": "^9.1.0",
24
+ "eslint-plugin-prettier": "^5.1.3",
25
+ "eslint-plugin-react": "^7.34.3",
26
+ "eslint-plugin-react-hooks": "^4.6.2",
27
+ "eslint-plugin-react-refresh": "^0.4.7",
28
+ "husky": "^9.0.11",
29
+ "lint-staged": "^15.2.7",
30
+ "postcss": "^8.4.39",
31
+ "prettier": "^3.3.2",
32
+ "react": ">=17.0.0 <19.0.0",
33
+ "react-dom": ">=17.0.0 <19.0.0",
34
+ "sass": "^1.77.6",
35
+ "tailwindcss": "^3.4.4",
36
+ "typescript": "^5.2.2",
37
+ "vite": "^5.3.1",
38
+ "vite-plugin-dts": "^3.9.1"
39
+ },
40
+ "peerDependencies": {
41
+ "@types/react": ">=17.0.0 <19.0.0",
42
+ "@types/react-dom": ">=17.0.0 <19.0.0",
43
+ "react": ">=17.0.0 <19.0.0",
44
+ "react-dom": ">=17.0.0 <19.0.0"
45
+ },
46
+ "main": "dist/index.umd.js",
47
+ "module": "dist/index.es.js",
48
+ "types": "dist/index.d.ts",
49
+ "exports": {
50
+ ".": {
51
+ "import": "./dist/index.es.js",
52
+ "require": "./dist/index.umd.js",
53
+ "types": "./dist/index.d.ts"
54
+ },
55
+ "./dist/assets/core.css": "./dist/assets/core.css",
56
+ "./dist/assets/style.css": "./dist/assets/style.css"
57
+ },
58
+ "files": [
59
+ "/dist"
60
+ ],
61
+ "publishConfig": {
62
+ "access": "public"
63
+ },
64
+ "lint-staged": {
65
+ "*.{js,jsx,ts,tsx}": [
66
+ "eslint --quiet --fix"
67
+ ],
68
+ "*.{json,js,ts,jsx,tsx,html}": [
69
+ "prettier --write --ignore-unknown"
70
+ ]
71
+ },
72
+ "dependencies": {
73
+ "@floating-ui/react": "^0.26.19",
74
+ "@internationalized/date": "^3.5.4",
75
+ "@tanstack/react-table": "^8.19.2",
76
+ "chart.js": "^4.4.3",
77
+ "react-aria": "^3.33.1",
78
+ "react-chartjs-2": "^5.2.0",
79
+ "react-number-format": "^5.4.0",
80
+ "react-select": "^5.8.0",
81
+ "react-select-async-paginate": "^0.7.4",
82
+ "react-stately": "^3.31.1",
83
+ "react-virtuoso": "^4.7.11"
84
+ }
85
+ }
package/dist/style.css DELETED
@@ -1 +0,0 @@
1
- /*! tailwindcss v3.4.4 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,::backdrop,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }.\31ru-w-full{width:100%}.\31ru-bg-red-900{--tw-bg-opacity:1;background-color:rgb(183 28 28/var(--tw-bg-opacity))}.\[-webkit-appearance\:none\]{-webkit-appearance:none}body{background:#fff}.\[\&\:\:-moz-range-thumb\]\:\[-webkit-appearance\:none\]::-moz-range-thumb{-webkit-appearance:none}.\[\&\:\:-webkit-slider-thumb\]\:\[-webkit-appearance\:none\]::-webkit-slider-thumb{-webkit-appearance:none}