ionbase-ui 0.2.0 → 0.3.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/components/Avatar.d.ts +8 -5
- package/dist/components/Avatar.d.ts.map +1 -1
- package/dist/components/Avatar.js +31 -11
- package/dist/components/Avatar.js.map +1 -1
- package/dist/components/Button.d.ts +4 -0
- package/dist/components/Button.d.ts.map +1 -1
- package/dist/components/Button.js +6 -2
- package/dist/components/Button.js.map +1 -1
- package/dist/components/Checkbox.d.ts +6 -0
- package/dist/components/Checkbox.d.ts.map +1 -1
- package/dist/components/Checkbox.js +6 -3
- package/dist/components/Checkbox.js.map +1 -1
- package/dist/components/Input.d.ts +30 -2
- package/dist/components/Input.d.ts.map +1 -1
- package/dist/components/Input.js +23 -7
- package/dist/components/Input.js.map +1 -1
- package/dist/components/Menu.d.ts +6 -0
- package/dist/components/Menu.d.ts.map +1 -1
- package/dist/components/Menu.js +11 -7
- package/dist/components/Menu.js.map +1 -1
- package/dist/components/NavItem.d.ts +4 -0
- package/dist/components/NavItem.d.ts.map +1 -1
- package/dist/components/NavItem.js +22 -2
- package/dist/components/NavItem.js.map +1 -1
- package/dist/components/Radio.d.ts +11 -0
- package/dist/components/Radio.d.ts.map +1 -1
- package/dist/components/Radio.js +25 -17
- package/dist/components/Radio.js.map +1 -1
- package/dist/components/ScrollProgress.d.ts.map +1 -1
- package/dist/components/ScrollProgress.js +1 -0
- package/dist/components/ScrollProgress.js.map +1 -1
- package/dist/components/Select.d.ts +11 -2
- package/dist/components/Select.d.ts.map +1 -1
- package/dist/components/Select.js +6 -3
- package/dist/components/Select.js.map +1 -1
- package/dist/components/Table.d.ts +26 -1
- package/dist/components/Table.d.ts.map +1 -1
- package/dist/components/Table.js +30 -7
- package/dist/components/Table.js.map +1 -1
- package/dist/components/Tabs.d.ts +7 -3
- package/dist/components/Tabs.d.ts.map +1 -1
- package/dist/components/Tabs.js +13 -2
- package/dist/components/Tabs.js.map +1 -1
- package/dist/components/Toggle.d.ts +6 -0
- package/dist/components/Toggle.d.ts.map +1 -1
- package/dist/components/Toggle.js +6 -3
- package/dist/components/Toggle.js.map +1 -1
- package/dist/components/dom-props.d.ts +59 -0
- package/dist/components/dom-props.d.ts.map +1 -1
- package/dist/components/dom-props.js +86 -0
- package/dist/components/dom-props.js.map +1 -1
- package/dist/components/index.d.ts +1 -1
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/index.js.map +1 -1
- package/dist/components/resolve-disabled.d.ts +9 -0
- package/dist/components/resolve-disabled.d.ts.map +1 -0
- package/dist/components/resolve-disabled.js +15 -0
- package/dist/components/resolve-disabled.js.map +1 -0
- package/dist/index.d.ts +5 -6
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -6
- package/dist/index.js.map +1 -1
- package/dist/styles/index.css +133 -0
- package/dist/styles/table.css +10 -6
- package/dist/styles/tabs.css +12 -3
- package/dist/tokens-js.d.ts +12 -0
- package/dist/tokens-js.d.ts.map +1 -0
- package/dist/tokens-js.js +12 -0
- package/dist/tokens-js.js.map +1 -0
- package/package.json +7 -3
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dom-props.d.ts","sourceRoot":"","sources":["../../src/components/dom-props.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dom-props.d.ts","sourceRoot":"","sources":["../../src/components/dom-props.ts"],"names":[],"mappings":"AAMA;;;;;;;;;;;;;GAaG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,eAAO,MAAM,yBAAyB,yLAa2B,CAAC;AAElE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,eAAO,MAAM,6BAA6B,0PAiBgB,CAAC;AAE3D;;;;;;;;;;;;;;;;GAgBG;AACH,eAAO,MAAM,2BAA2B,6JAUwB,CAAC;AAEjE;;;;;;GAMG;AACH,wBAAgB,SAAS,CAAC,CAAC,SAAS,MAAM,EAAE,CAAC,SAAS,SAAS,WAAW,EAAE,EAC1E,KAAK,EAAE,CAAC,EACR,IAAI,EAAE,CAAC,GACN,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAIpB"}
|
|
@@ -53,6 +53,92 @@ export const ARIA_BUTTON_NON_DOM_PROPS = [
|
|
|
53
53
|
'target',
|
|
54
54
|
'rel',
|
|
55
55
|
];
|
|
56
|
+
/**
|
|
57
|
+
* The same, for `AriaTextFieldProps` — Input's prop type.
|
|
58
|
+
*
|
|
59
|
+
* Input had the opposite defect to Button's: it destructured ten named props
|
|
60
|
+
* and never built a rest object at all, so nothing outside `AriaTextFieldProps`
|
|
61
|
+
* ever reached the `<input>`. `data-testid` and every other custom attribute
|
|
62
|
+
* vanished with no warning. Spreading the rest fixes that, but only if these
|
|
63
|
+
* come out first.
|
|
64
|
+
*
|
|
65
|
+
* Sources, as of react-aria 3.50:
|
|
66
|
+
* LabelableProps label
|
|
67
|
+
* HelpTextProps description, errorMessage
|
|
68
|
+
* InputBase isDisabled, isReadOnly
|
|
69
|
+
* Validation isRequired, isInvalid, validationState, validationBehavior,
|
|
70
|
+
* validate
|
|
71
|
+
* ValueBase onChange — takes a string, not an event; `useTextField`
|
|
72
|
+
* returns a real DOM handler in its place
|
|
73
|
+
* FocusEvents onFocusChange
|
|
74
|
+
* FocusableDOMProps excludeFromTabOrder
|
|
75
|
+
*
|
|
76
|
+
* Several of these Input already destructures by name; they are listed anyway
|
|
77
|
+
* so this reads as a complete statement about the type rather than a diff
|
|
78
|
+
* against one component's parameter list.
|
|
79
|
+
*
|
|
80
|
+
* `spellCheck` is the odd one out: a real input attribute, but React Aria types
|
|
81
|
+
* it as `string` where React wants `Booleanish`, so forwarding it from the rest
|
|
82
|
+
* spread does not typecheck. It is dropped rather than cast because
|
|
83
|
+
* `useTextField` already returns it — verified: `inputProps` carries the whole
|
|
84
|
+
* of `TextInputDOMProps`, `spellCheck` and `autoCorrect` included.
|
|
85
|
+
*
|
|
86
|
+
* `value` and `defaultValue` are here for a subtler reason than the rest.
|
|
87
|
+
* "`inputProps` is spread afterwards and wins" only holds for the SAME key —
|
|
88
|
+
* and `useTextField` always returns `value`, even when the caller passed
|
|
89
|
+
* `defaultValue`. Forwarding `defaultValue` therefore puts both on the element
|
|
90
|
+
* and React warns that the input is neither controlled nor uncontrolled. This
|
|
91
|
+
* was a real regression, caught by the Input stories, not a precaution.
|
|
92
|
+
*
|
|
93
|
+
* `placeholder`, `name`, `autoComplete` and `id` stay out of the list: they are
|
|
94
|
+
* single-key collisions, so `inputProps` genuinely does win.
|
|
95
|
+
*/
|
|
96
|
+
export const ARIA_TEXT_FIELD_NON_DOM_PROPS = [
|
|
97
|
+
'label',
|
|
98
|
+
'description',
|
|
99
|
+
'errorMessage',
|
|
100
|
+
'isDisabled',
|
|
101
|
+
'isReadOnly',
|
|
102
|
+
'isRequired',
|
|
103
|
+
'isInvalid',
|
|
104
|
+
'validationState',
|
|
105
|
+
'validationBehavior',
|
|
106
|
+
'validate',
|
|
107
|
+
'onChange',
|
|
108
|
+
'onFocusChange',
|
|
109
|
+
'excludeFromTabOrder',
|
|
110
|
+
'spellCheck',
|
|
111
|
+
'value',
|
|
112
|
+
'defaultValue',
|
|
113
|
+
];
|
|
114
|
+
/**
|
|
115
|
+
* The same, for `AriaTabListProps` — Tabs' prop type.
|
|
116
|
+
*
|
|
117
|
+
* Tabs previously forwarded its leftover props only into the Aria/Stately
|
|
118
|
+
* hooks, so HTML attributes like `data-testid` never reached the root. The
|
|
119
|
+
* list below is what must stay off the DOM when the rest is spread onto the
|
|
120
|
+
* outer element; the hooks still see the full object.
|
|
121
|
+
*
|
|
122
|
+
* Sources, as of react-aria / react-stately 3.50:
|
|
123
|
+
* CollectionBase children, items, disabledKeys
|
|
124
|
+
* TabListProps isDisabled, selectedKey, defaultSelectedKey,
|
|
125
|
+
* onSelectionChange
|
|
126
|
+
* AriaTabListProps keyboardActivation, orientation
|
|
127
|
+
*
|
|
128
|
+
* `id`, `aria-*` and other `DOMProps` / `AriaLabelingProps` members are valid
|
|
129
|
+
* on the root and are deliberately absent.
|
|
130
|
+
*/
|
|
131
|
+
export const ARIA_TAB_LIST_NON_DOM_PROPS = [
|
|
132
|
+
'children',
|
|
133
|
+
'items',
|
|
134
|
+
'disabledKeys',
|
|
135
|
+
'isDisabled',
|
|
136
|
+
'selectedKey',
|
|
137
|
+
'defaultSelectedKey',
|
|
138
|
+
'onSelectionChange',
|
|
139
|
+
'keyboardActivation',
|
|
140
|
+
'orientation',
|
|
141
|
+
];
|
|
56
142
|
/**
|
|
57
143
|
* Returns `props` without `keys`, leaving `props` untouched.
|
|
58
144
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dom-props.js","sourceRoot":"","sources":["../../src/components/dom-props.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dom-props.js","sourceRoot":"","sources":["../../src/components/dom-props.ts"],"names":[],"mappings":"AAMA;;;;;;;;;;;;;GAaG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAG;IACvC,SAAS;IACT,cAAc;IACd,YAAY;IACZ,eAAe;IACf,WAAW;IACX,eAAe;IACf,qBAAqB;IACrB,qBAAqB;IACrB,aAAa;IACb,MAAM;IACN,QAAQ;IACR,KAAK;CAC0D,CAAC;AAElE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAAG;IAC3C,OAAO;IACP,aAAa;IACb,cAAc;IACd,YAAY;IACZ,YAAY;IACZ,YAAY;IACZ,WAAW;IACX,iBAAiB;IACjB,oBAAoB;IACpB,UAAU;IACV,UAAU;IACV,eAAe;IACf,qBAAqB;IACrB,YAAY;IACZ,OAAO;IACP,cAAc;CAC0C,CAAC;AAE3D;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,CAAC,MAAM,2BAA2B,GAAG;IACzC,UAAU;IACV,OAAO;IACP,cAAc;IACd,YAAY;IACZ,aAAa;IACb,oBAAoB;IACpB,mBAAmB;IACnB,oBAAoB;IACpB,aAAa;CACiD,CAAC;AAEjE;;;;;;GAMG;AACH,MAAM,UAAU,SAAS,CACvB,KAAQ,EACR,IAAO;IAEP,MAAM,MAAM,GAAG,EAAE,GAAG,KAAK,EAAkC,CAAC;IAC5D,KAAK,MAAM,GAAG,IAAI,IAAI;QAAE,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC;IAC3C,OAAO,MAA4B,CAAC;AACtC,CAAC"}
|
|
@@ -27,7 +27,7 @@ export type { DividerProps, DividerOrientation } from './Divider.js';
|
|
|
27
27
|
export { NavItem } from './NavItem.js';
|
|
28
28
|
export type { NavItemProps } from './NavItem.js';
|
|
29
29
|
export { Table, TableHead, TableBody, TableRow, TableCell } from './Table.js';
|
|
30
|
-
export type { TableProps, TableDensity, TableRowProps, TableCellProps, TableCellAlign, } from './Table.js';
|
|
30
|
+
export type { TableProps, TableDensity, TableRowProps, TableRowSelection, TableCellProps, TableCellAlign, TableCellScope, } from './Table.js';
|
|
31
31
|
export { ScrollProgress } from './ScrollProgress.js';
|
|
32
32
|
export type { ScrollProgressProps, ScrollProgressSection, } from './ScrollProgress.js';
|
|
33
33
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,YAAY,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC/C,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAC1C,YAAY,EAAE,SAAS,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAC/D,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AACnC,YAAY,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAC1D,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AACnC,YAAY,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AACxD,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,YAAY,EAAE,WAAW,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AACzE,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,YAAY,EACV,aAAa,EACb,YAAY,EACZ,cAAc,GACf,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAC/C,YAAY,EACV,UAAU,EACV,eAAe,EACf,SAAS,EACT,WAAW,GACZ,MAAM,YAAY,CAAC;AACpB,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,YAAY,EAAE,WAAW,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AACzE,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAC3C,YAAY,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AAC1D,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAClD,YAAY,EACV,WAAW,EACX,gBAAgB,EAChB,UAAU,EACV,WAAW,GACZ,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,YAAY,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC/C,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAC3C,YAAY,EACV,SAAS,EACT,aAAa,EACb,QAAQ,EACR,YAAY,GACb,MAAM,WAAW,CAAC;AACnB,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AACvC,YAAY,EAAE,YAAY,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;AACrE,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AACvC,YAAY,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAC9E,YAAY,EACV,UAAU,EACV,YAAY,EACZ,aAAa,EACb,cAAc,EACd,cAAc,GACf,MAAM,YAAY,CAAC;AACpB,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,YAAY,EACV,mBAAmB,EACnB,qBAAqB,GACtB,MAAM,qBAAqB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,YAAY,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC/C,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAC1C,YAAY,EAAE,SAAS,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAC/D,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AACnC,YAAY,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAC1D,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AACnC,YAAY,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AACxD,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,YAAY,EAAE,WAAW,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AACzE,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,YAAY,EACV,aAAa,EACb,YAAY,EACZ,cAAc,GACf,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAC/C,YAAY,EACV,UAAU,EACV,eAAe,EACf,SAAS,EACT,WAAW,GACZ,MAAM,YAAY,CAAC;AACpB,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,YAAY,EAAE,WAAW,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AACzE,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAC3C,YAAY,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AAC1D,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAClD,YAAY,EACV,WAAW,EACX,gBAAgB,EAChB,UAAU,EACV,WAAW,GACZ,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,YAAY,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC/C,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAC3C,YAAY,EACV,SAAS,EACT,aAAa,EACb,QAAQ,EACR,YAAY,GACb,MAAM,WAAW,CAAC;AACnB,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AACvC,YAAY,EAAE,YAAY,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;AACrE,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AACvC,YAAY,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAC9E,YAAY,EACV,UAAU,EACV,YAAY,EACZ,aAAa,EACb,iBAAiB,EACjB,cAAc,EACd,cAAc,EACd,cAAc,GACf,MAAM,YAAY,CAAC;AACpB,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,YAAY,EACV,mBAAmB,EACnB,qBAAqB,GACtB,MAAM,qBAAqB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAErC,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAE1C,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAEnC,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAEnC,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAErC,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAMzC,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAO/C,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAErC,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAE3C,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAOlD,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAErC,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAO3C,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAEvC,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAEvC,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAErC,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAE1C,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAEnC,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAEnC,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAErC,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAMzC,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAO/C,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAErC,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAE3C,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAOlD,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAErC,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAO3C,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAEvC,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAEvC,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAU9E,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Disabled-prop resolution for the library-wide `isDisabled` convention.
|
|
3
|
+
*
|
|
4
|
+
* Canonical name is React Aria's `isDisabled`. Native `disabled` remains
|
|
5
|
+
* accepted as a deprecated alias for one minor so callers are not broken on
|
|
6
|
+
* the rename. When both are passed, `isDisabled` wins.
|
|
7
|
+
*/
|
|
8
|
+
export declare function resolveDisabled(isDisabled?: boolean, disabled?: boolean): boolean | undefined;
|
|
9
|
+
//# sourceMappingURL=resolve-disabled.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resolve-disabled.d.ts","sourceRoot":"","sources":["../../src/components/resolve-disabled.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,wBAAgB,eAAe,CAC7B,UAAU,CAAC,EAAE,OAAO,EACpB,QAAQ,CAAC,EAAE,OAAO,GACjB,OAAO,GAAG,SAAS,CAIrB"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Disabled-prop resolution for the library-wide `isDisabled` convention.
|
|
3
|
+
*
|
|
4
|
+
* Canonical name is React Aria's `isDisabled`. Native `disabled` remains
|
|
5
|
+
* accepted as a deprecated alias for one minor so callers are not broken on
|
|
6
|
+
* the rename. When both are passed, `isDisabled` wins.
|
|
7
|
+
*/
|
|
8
|
+
export function resolveDisabled(isDisabled, disabled) {
|
|
9
|
+
if (isDisabled !== undefined)
|
|
10
|
+
return isDisabled;
|
|
11
|
+
if (disabled !== undefined)
|
|
12
|
+
return disabled;
|
|
13
|
+
return undefined;
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=resolve-disabled.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resolve-disabled.js","sourceRoot":"","sources":["../../src/components/resolve-disabled.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,MAAM,UAAU,eAAe,CAC7B,UAAoB,EACpB,QAAkB;IAElB,IAAI,UAAU,KAAK,SAAS;QAAE,OAAO,UAAU,CAAC;IAChD,IAAI,QAAQ,KAAK,SAAS;QAAE,OAAO,QAAQ,CAAC;IAC5C,OAAO,SAAS,CAAC;AACnB,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -9,17 +9,16 @@
|
|
|
9
9
|
*
|
|
10
10
|
* import 'ionbase-ui/styles'; // tokens + components, one import
|
|
11
11
|
* import { Button, Icon } from 'ionbase-ui';
|
|
12
|
+
* import { semantic } from 'ionbase-ui/tokens-js'; // JS token values
|
|
12
13
|
*
|
|
13
14
|
* Icons are not bundled. `Icon` takes the icon as a prop, so any SVG component
|
|
14
15
|
* works — lucide-react, heroicons, react-icons, your own. See ./Icon.tsx.
|
|
16
|
+
*
|
|
17
|
+
* JS token values used to re-export from this barrel as `tokens`. That pulled
|
|
18
|
+
* ~48KB into any consumer whose bundler does not tree-shake a namespace
|
|
19
|
+
* re-export. They live at `ionbase-ui/tokens-js` now.
|
|
15
20
|
*/
|
|
16
21
|
export * from './components/index.js';
|
|
17
22
|
export { Icon } from './Icon.js';
|
|
18
23
|
export type { IconProps, IconSize } from './Icon.js';
|
|
19
|
-
/**
|
|
20
|
-
* Generated token values, as `var(--…)` references. Copied in from the token
|
|
21
|
-
* pipeline at build time by scripts/sync-tokens.mjs — never hand-edited, and
|
|
22
|
-
* git-ignored, because Figma owns these names and values.
|
|
23
|
-
*/
|
|
24
|
-
export * as tokens from './tokens/index.js';
|
|
25
24
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AACH,cAAc,uBAAuB,CAAC;AAEtC,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AACjC,YAAY,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -9,16 +9,15 @@
|
|
|
9
9
|
*
|
|
10
10
|
* import 'ionbase-ui/styles'; // tokens + components, one import
|
|
11
11
|
* import { Button, Icon } from 'ionbase-ui';
|
|
12
|
+
* import { semantic } from 'ionbase-ui/tokens-js'; // JS token values
|
|
12
13
|
*
|
|
13
14
|
* Icons are not bundled. `Icon` takes the icon as a prop, so any SVG component
|
|
14
15
|
* works — lucide-react, heroicons, react-icons, your own. See ./Icon.tsx.
|
|
16
|
+
*
|
|
17
|
+
* JS token values used to re-export from this barrel as `tokens`. That pulled
|
|
18
|
+
* ~48KB into any consumer whose bundler does not tree-shake a namespace
|
|
19
|
+
* re-export. They live at `ionbase-ui/tokens-js` now.
|
|
15
20
|
*/
|
|
16
21
|
export * from './components/index.js';
|
|
17
22
|
export { Icon } from './Icon.js';
|
|
18
|
-
/**
|
|
19
|
-
* Generated token values, as `var(--…)` references. Copied in from the token
|
|
20
|
-
* pipeline at build time by scripts/sync-tokens.mjs — never hand-edited, and
|
|
21
|
-
* git-ignored, because Figma owns these names and values.
|
|
22
|
-
*/
|
|
23
|
-
export * as tokens from './tokens/index.js';
|
|
24
23
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AACH,cAAc,uBAAuB,CAAC;AAEtC,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC"}
|
package/dist/styles/index.css
CHANGED
|
@@ -62,3 +62,136 @@ body {
|
|
|
62
62
|
-webkit-font-smoothing: antialiased;
|
|
63
63
|
-moz-osx-font-smoothing: grayscale;
|
|
64
64
|
}
|
|
65
|
+
|
|
66
|
+
/*
|
|
67
|
+
* Reduced motion — WCAG 2.3.3.
|
|
68
|
+
*
|
|
69
|
+
* Ten component stylesheets carry transitions; none of them individually
|
|
70
|
+
* gated on the query. One global block covers every `ion-*` rule rather than
|
|
71
|
+
* duplicating the media query ten times. `0.01ms` rather than `0` so the
|
|
72
|
+
* browser still fires `transitionend` / `animationend` for anything that
|
|
73
|
+
* listens.
|
|
74
|
+
*/
|
|
75
|
+
@media (prefers-reduced-motion: reduce) {
|
|
76
|
+
[class^='ion-'],
|
|
77
|
+
[class*=' ion-'],
|
|
78
|
+
[class^='ion-'] *,
|
|
79
|
+
[class*=' ion-'] * {
|
|
80
|
+
animation-duration: 0.01ms !important;
|
|
81
|
+
animation-iteration-count: 1 !important;
|
|
82
|
+
transition-duration: 0.01ms !important;
|
|
83
|
+
scroll-behavior: auto !important;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/*
|
|
88
|
+
* Forced colours — Windows High Contrast / WCAG 1.4.11.
|
|
89
|
+
*
|
|
90
|
+
* Components that convey state with background or border tokens flatten to
|
|
91
|
+
* unreadable blocks when the OS remaps colour. Re-express those states with
|
|
92
|
+
* system colour keywords so selected, checked, focused and disabled remain
|
|
93
|
+
* distinguishable. `forced-color-adjust: none` only where the system would
|
|
94
|
+
* otherwise erase a fill the mark depends on (checked boxes, selected pills).
|
|
95
|
+
*/
|
|
96
|
+
@media (forced-colors: active) {
|
|
97
|
+
.ion-button:focus-visible,
|
|
98
|
+
.ion-button[data-focused='true'],
|
|
99
|
+
.ion-nav-item:focus-visible,
|
|
100
|
+
.ion-nav-item[data-focused='true'],
|
|
101
|
+
.ion-tabs__item:focus-visible,
|
|
102
|
+
.ion-tabs__item[data-focused='true'],
|
|
103
|
+
.ion-tabs__panel:focus-visible,
|
|
104
|
+
.ion-menu__item:focus-visible,
|
|
105
|
+
.ion-input:focus-within,
|
|
106
|
+
.ion-select:focus-within,
|
|
107
|
+
.ion-scroll-progress__trigger:focus-visible,
|
|
108
|
+
.ion-scroll-progress__heading:focus-visible,
|
|
109
|
+
.ion-table-container:focus-visible {
|
|
110
|
+
outline: var(--border-width-thick) solid Highlight;
|
|
111
|
+
outline-offset: 2px;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.ion-checkbox__input:focus-visible + .ion-checkbox__indicator,
|
|
115
|
+
.ion-checkbox[data-focused='true'] .ion-checkbox__indicator,
|
|
116
|
+
.ion-radio__input:focus-visible + .ion-radio__indicator,
|
|
117
|
+
.ion-radio[data-focused='true'] .ion-radio__indicator,
|
|
118
|
+
.ion-toggle__input:focus-visible + .ion-toggle__track,
|
|
119
|
+
.ion-toggle[data-focused='true'] .ion-toggle__track {
|
|
120
|
+
outline: var(--border-width-thick) solid Highlight;
|
|
121
|
+
outline-offset: 2px;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/* Checked / selected before disabled so specificity reads non-decreasing. */
|
|
125
|
+
.ion-checkbox__input:checked + .ion-checkbox__indicator,
|
|
126
|
+
.ion-checkbox__input:indeterminate + .ion-checkbox__indicator,
|
|
127
|
+
.ion-radio__input:checked + .ion-radio__indicator,
|
|
128
|
+
.ion-toggle__input:checked + .ion-toggle__track {
|
|
129
|
+
forced-color-adjust: none;
|
|
130
|
+
background-color: Highlight;
|
|
131
|
+
border-color: Highlight;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.ion-checkbox__input:checked + .ion-checkbox__indicator .ion-checkbox__mark,
|
|
135
|
+
.ion-checkbox__input:indeterminate
|
|
136
|
+
+ .ion-checkbox__indicator
|
|
137
|
+
.ion-checkbox__mark {
|
|
138
|
+
forced-color-adjust: none;
|
|
139
|
+
color: HighlightText;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.ion-radio__input:checked + .ion-radio__indicator .ion-radio__dot {
|
|
143
|
+
forced-color-adjust: none;
|
|
144
|
+
background-color: HighlightText;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.ion-toggle__input:checked + .ion-toggle__track .ion-toggle__thumb {
|
|
148
|
+
forced-color-adjust: none;
|
|
149
|
+
background-color: HighlightText;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.ion-table tbody tr[data-selected='true'] {
|
|
153
|
+
forced-color-adjust: none;
|
|
154
|
+
background-color: Highlight;
|
|
155
|
+
color: HighlightText;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.ion-tabs__item--underline[data-selected='true'] {
|
|
159
|
+
border-bottom-color: Highlight;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.ion-tabs__item--pill[data-selected='true'] {
|
|
163
|
+
forced-color-adjust: none;
|
|
164
|
+
background-color: Highlight;
|
|
165
|
+
color: HighlightText;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.ion-button:disabled,
|
|
169
|
+
.ion-button[data-disabled='true'],
|
|
170
|
+
.ion-nav-item--disabled,
|
|
171
|
+
.ion-nav-item[data-disabled='true'],
|
|
172
|
+
.ion-tabs__item[data-disabled='true'],
|
|
173
|
+
.ion-menu__item:disabled,
|
|
174
|
+
.ion-menu__item[data-disabled='true'],
|
|
175
|
+
.ion-input[data-disabled='true'],
|
|
176
|
+
.ion-select[data-disabled='true'],
|
|
177
|
+
.ion-checkbox--disabled,
|
|
178
|
+
.ion-checkbox[data-disabled='true'],
|
|
179
|
+
.ion-radio--disabled,
|
|
180
|
+
.ion-radio[data-disabled='true'],
|
|
181
|
+
.ion-toggle--disabled,
|
|
182
|
+
.ion-toggle[data-disabled='true'] {
|
|
183
|
+
color: GrayText;
|
|
184
|
+
border-color: GrayText;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.ion-checkbox__input:disabled + .ion-checkbox__indicator,
|
|
188
|
+
.ion-checkbox__input:checked:disabled + .ion-checkbox__indicator,
|
|
189
|
+
.ion-checkbox__input:indeterminate:disabled + .ion-checkbox__indicator,
|
|
190
|
+
.ion-radio__input:disabled + .ion-radio__indicator,
|
|
191
|
+
.ion-radio__input:checked:disabled + .ion-radio__indicator,
|
|
192
|
+
.ion-toggle__input:disabled + .ion-toggle__track,
|
|
193
|
+
.ion-toggle__input:checked:disabled + .ion-toggle__track {
|
|
194
|
+
border-color: GrayText;
|
|
195
|
+
background-color: Canvas;
|
|
196
|
+
}
|
|
197
|
+
}
|
package/dist/styles/table.css
CHANGED
|
@@ -37,6 +37,12 @@
|
|
|
37
37
|
border-radius: var(--radius-md);
|
|
38
38
|
}
|
|
39
39
|
|
|
40
|
+
/* Keyboard focus ring for the scroll region — see Table.tsx. */
|
|
41
|
+
.ion-table-container:focus-visible {
|
|
42
|
+
outline: var(--border-width-thick) solid var(--border-focus);
|
|
43
|
+
outline-offset: 2px;
|
|
44
|
+
}
|
|
45
|
+
|
|
40
46
|
.ion-table {
|
|
41
47
|
width: 100%;
|
|
42
48
|
border-collapse: collapse;
|
|
@@ -83,12 +89,10 @@
|
|
|
83
89
|
* inside `<thead>`.
|
|
84
90
|
*
|
|
85
91
|
* The `<th>` half is the Figma binding (see the header). The `thead` half
|
|
86
|
-
* exists
|
|
87
|
-
*
|
|
88
|
-
*
|
|
89
|
-
*
|
|
90
|
-
* rule is specifically about text a sighted screen-reader user can also see.
|
|
91
|
-
* Such a cell should be a `<td>`, which then still needs to look like a header.
|
|
92
|
+
* exists for cells that sit in the header row but are not column headers —
|
|
93
|
+
* rare, and mostly historical. Selection's select-all cell is a real `<th
|
|
94
|
+
* scope="col">` with a labelled checkbox, so it gets the fill from the `<th>`
|
|
95
|
+
* rule rather than this fallback.
|
|
92
96
|
*
|
|
93
97
|
* Declared after `.ion-table td` so specificity reads non-decreasing; the two
|
|
94
98
|
* `td` selectors would otherwise trip `no-descending-specificity`.
|
package/dist/styles/tabs.css
CHANGED
|
@@ -9,9 +9,13 @@
|
|
|
9
9
|
* variables rather than restating five declarations, and the icon rule needs no
|
|
10
10
|
* per-size override.
|
|
11
11
|
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
12
|
+
* Vertical is STRUCTURAL ONLY. `--vertical` stacks the track and stretches the
|
|
13
|
+
* items, which is what the word means and needs no design input. Its
|
|
14
|
+
* decoration does: the underline rule is a `border-bottom` and the pill track's
|
|
15
|
+
* padding is written for the horizontal axis, and which edge the underline
|
|
16
|
+
* moves to is Figma's call, not this file's. Until that is specified, a
|
|
17
|
+
* vertical track is correctly stacked, correctly navigable and correctly
|
|
18
|
+
* announced, but wears the horizontal type styling.
|
|
15
19
|
*/
|
|
16
20
|
|
|
17
21
|
/* Track */
|
|
@@ -23,6 +27,11 @@
|
|
|
23
27
|
padding: 0;
|
|
24
28
|
}
|
|
25
29
|
|
|
30
|
+
.ion-tabs__track--vertical {
|
|
31
|
+
flex-direction: column;
|
|
32
|
+
align-items: stretch;
|
|
33
|
+
}
|
|
34
|
+
|
|
26
35
|
.ion-tabs__track--underline.ion-tabs__track--horizontal {
|
|
27
36
|
display: inline-flex;
|
|
28
37
|
gap: var(--spacing-4);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* JS token values as `var(--…)` string references.
|
|
3
|
+
*
|
|
4
|
+
* Prefer this subpath over the main barrel so importing a component does not
|
|
5
|
+
* pull ~48KB of token JSON into bundlers that do not tree-shake:
|
|
6
|
+
*
|
|
7
|
+
* import { semantic, tokens } from 'ionbase-ui/tokens-js';
|
|
8
|
+
*
|
|
9
|
+
* CSS custom properties stay at `ionbase-ui/tokens` / `ionbase-ui/styles`.
|
|
10
|
+
*/
|
|
11
|
+
export * from './tokens/index.js';
|
|
12
|
+
//# sourceMappingURL=tokens-js.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tokens-js.d.ts","sourceRoot":"","sources":["../src/tokens-js.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AACH,cAAc,mBAAmB,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* JS token values as `var(--…)` string references.
|
|
3
|
+
*
|
|
4
|
+
* Prefer this subpath over the main barrel so importing a component does not
|
|
5
|
+
* pull ~48KB of token JSON into bundlers that do not tree-shake:
|
|
6
|
+
*
|
|
7
|
+
* import { semantic, tokens } from 'ionbase-ui/tokens-js';
|
|
8
|
+
*
|
|
9
|
+
* CSS custom properties stay at `ionbase-ui/tokens` / `ionbase-ui/styles`.
|
|
10
|
+
*/
|
|
11
|
+
export * from './tokens/index.js';
|
|
12
|
+
//# sourceMappingURL=tokens-js.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tokens-js.js","sourceRoot":"","sources":["../src/tokens-js.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AACH,cAAc,mBAAmB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ionbase-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "IonBase Design System — accessible React components, styles and design tokens in one package",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -14,7 +14,11 @@
|
|
|
14
14
|
"./styles": "./dist/styles/index.css",
|
|
15
15
|
"./styles/*": "./dist/styles/*",
|
|
16
16
|
"./tokens": "./dist/styles/tokens/index.css",
|
|
17
|
-
"./tokens/*": "./dist/styles/tokens/*"
|
|
17
|
+
"./tokens/*": "./dist/styles/tokens/*",
|
|
18
|
+
"./tokens-js": {
|
|
19
|
+
"types": "./dist/tokens-js.d.ts",
|
|
20
|
+
"default": "./dist/tokens-js.js"
|
|
21
|
+
}
|
|
18
22
|
},
|
|
19
23
|
"keywords": [
|
|
20
24
|
"design-system",
|
|
@@ -46,7 +50,7 @@
|
|
|
46
50
|
},
|
|
47
51
|
"scripts": {
|
|
48
52
|
"dev": "tsc --watch",
|
|
49
|
-
"build": "node scripts/sync-tokens.mjs && tsc --build --force && node scripts/copy-css.mjs",
|
|
53
|
+
"build": "node scripts/sync-tokens.mjs && tsc --build --force && node scripts/copy-css.mjs && node scripts/verify-client-boundaries.mjs",
|
|
50
54
|
"typecheck": "tsc --noEmit",
|
|
51
55
|
"lint": "eslint . && stylelint \"src/styles/*.css\"",
|
|
52
56
|
"format": "prettier --check .",
|