@loadsmart/loadsmart-ui 6.0.15 → 6.0.16
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/Text/Text.d.ts +1 -1
- package/dist/index.js +198 -160
- package/dist/index.js.map +1 -1
- package/dist/miranda-compatibility.theme-22a9ce26.js +2 -0
- package/dist/miranda-compatibility.theme-22a9ce26.js.map +1 -0
- package/dist/{prop-82e9ff9d.js → prop-201ffe28.js} +2 -2
- package/dist/{prop-82e9ff9d.js.map → prop-201ffe28.js.map} +1 -1
- package/dist/testing/index.js +1 -1
- package/dist/theming/index.js +1 -1
- package/dist/theming/themes/alice.theme.d.ts +70 -15
- package/dist/theming/themes/loadsmart.theme.d.ts +70 -15
- package/dist/theming/themes/miranda-compatibility.theme.d.ts +141 -85
- package/dist/tools/index.js +1 -1
- package/package.json +1 -1
- package/src/common/CloseButton/CloseButton.tsx +4 -1
- package/src/common/SelectionWrapper.tsx +8 -0
- package/src/components/Button/Button.tsx +44 -21
- package/src/components/Checkbox/Checkbox.tsx +1 -1
- package/src/components/Dropdown/DropdownTrigger.tsx +9 -11
- package/src/components/Link/Link.tsx +9 -0
- package/src/components/Radio/Radio.tsx +1 -1
- package/src/components/Select/SelectTrigger.tsx +1 -1
- package/src/components/Switch/Switch.tsx +3 -1
- package/src/components/Tag/Tag.tsx +24 -4
- package/src/components/TextField/TextField.tsx +5 -2
- package/src/components/Textarea/Textarea.tsx +5 -2
- package/src/components/ToggleGroup/Toggle.tsx +3 -1
- package/src/theming/themes/alice.theme.ts +83 -15
- package/src/theming/themes/loadsmart.theme.ts +85 -16
- package/src/theming/themes/miranda-compatibility.theme.ts +181 -113
- package/dist/miranda-compatibility.theme-f99913ed.js +0 -2
- package/dist/miranda-compatibility.theme-f99913ed.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prop-
|
|
1
|
+
{"version":3,"file":"prop-201ffe28.js","sources":["../src/tools/conditional.ts","../src/tools/prop.ts"],"sourcesContent":["import { isObject } from '@loadsmart/utils-object'\nimport { isFunction } from '@loadsmart/utils-function'\nimport type { F } from 'ts-toolbelt'\n\nimport { getToken } from 'theming'\nimport type { ThemeToken, ThemedProps } from 'theming'\nimport get from 'utils/toolset/get'\nimport toArray from 'utils/toolset/toArray'\n\ntype WhenProps<K> = K | undefined | ((value: K) => boolean | undefined)\n\nexport type When<P> = {\n [Key in keyof P]?: WhenProps<P[Key]> | WhenProps<P[Key]>[] | undefined\n}\n\n/**\n * Utility to generate style/class name conditions based on a components props.\n * Expected prop values can be a single value, an array of values or a function/callback.\n * @example\n * ```jsx\n * whenProps({\n * 'prop-a': true, // checks `props['prop-a']` === true`\n * 'prop-b': [1, 2], // checks `toArray([1, 2]).includes(props['prop-b'])`\n * 'prop-c': (value) => value + 1 // checks `Boolean(callback(props['prop-c']))`\n * 'prop-d': Boolean // checks `Boolean(Boolean(props['prop-d']))`\n * })\n * ```\n * @param {...Object} conditions\n * @returns {(props: Object}) => boolean} Returns function that consumes component props.\n */\nexport function whenProps<P>(conditions: When<F.Narrow<P>> | When<F.Narrow<P>>[]) {\n return function (props: P): boolean {\n const safeConditions = toArray(conditions)\n\n let res = false\n\n for (let i = 0; i < safeConditions.length; i++) {\n const condition = safeConditions[i]\n const keys = Object.keys(condition)\n\n let temp = true\n\n for (let j = 0; j < keys.length && temp; j++) {\n const key = keys[j]\n const propValue = get(props, key) as P[keyof P]\n const conditionValue = condition[key as keyof typeof condition]\n\n if (Array.isArray(conditionValue)) {\n temp = temp && toArray(conditionValue).includes(propValue)\n } else if (isFunction(conditionValue)) {\n temp = temp && Boolean(conditionValue(propValue))\n } else {\n temp = temp && (conditionValue as unknown) === propValue\n }\n }\n\n res = res || temp\n }\n\n return res\n }\n}\n\ntype ConditionObject<P> = Record<\n string,\n string | number | boolean | ((props: P) => boolean) | undefined\n>\n\nfunction handleConditionObject<P>(condition: ConditionObject<P>, props: P): string {\n const keys = Object.keys(condition || {})\n\n const res = keys.reduce((acc, key) => {\n let value = condition[key]\n\n if (isFunction(value)) {\n value = value(props)\n }\n\n if (value) {\n const tokenKey = key as ThemeToken\n const result = (getToken(tokenKey, props as unknown as ThemedProps) ?? key) as string\n return [...acc, result]\n }\n\n return acc\n }, [] as string[])\n\n return res.join(' ')\n}\n\ntype Condition<P> = number | string | ConditionObject<P> | ((props: P) => string)\n\n/**\n * Concatenate style properties or class names conditionally.\n * Conditions can be functions that consume components props,\n * objects, strings, or numbers (that will be coerced to strings).\n * @example\n * ```jsx\n * conditional(1, 'some-class', {\n * 'class-a': true,\n * 'class-b': (props) => props.showClassB,\n * }, (props) => props.className)\n * ```\n * @param conditions\n * @returns {(props: ThemedProps) => string} Returns function that consumes component props.\n */\nfunction conditional<P>(...conditions: Condition<P>[]) {\n return function (props: P): string {\n let classes: string[] = []\n\n for (let i = 0; i < conditions.length; i++) {\n const condition = conditions[i]\n\n if (isFunction(condition)) {\n classes.push(condition(props))\n } else if (isObject(condition)) {\n classes = classes.concat(handleConditionObject<P>(condition, props))\n } else if (condition) {\n classes.push(String(condition))\n }\n }\n\n return classes.join(' ')\n }\n}\n\nexport default conditional\n","function compare(...args: any[]): unknown {\n // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment\n const [value, defaultValue] = args\n\n if (value == null || value === false || Number.isNaN(value)) {\n return defaultValue || value\n }\n\n if (typeof value === 'string' && value.length === 0) {\n return defaultValue || value\n }\n\n return value\n}\n\n/**\n * Retrieve the key value from the props object\n * @example\n * ```jsx\n * -transform: scaleY(${(props) => props.$height || 1});\n * +transform: scaleY(${prop('$height', 1)});\n * ```\n * @param name a valid property name from the object\n * @param defaultValue a fallback value in case the property value is invalid\n * @param comparatorFn a function to be used to decide between value or defaultValue\n * @returns {(props: ThemedProps) => string} Returns function that consumes component props.\n */\nfunction prop<P, K extends keyof P = keyof P>(\n name: K,\n defaultValue?: NonNullable<P[K]>,\n comparatorFn = compare\n) {\n return (props: P): P[K] => comparatorFn(props[name], defaultValue) as P[K]\n}\n\nexport default prop\n"],"names":["handleConditionObject","condition","props","Object","keys","reduce","acc","key","value","isFunction","tokenKey","result","_a","getToken","join","compare","args","defaultValue","Number","isNaN","length","conditions","classes","i","push","isObject","concat","String","name","comparatorFn","safeConditions","toArray","res","temp","j","propValue","get","conditionValue","Array","isArray","includes","Boolean"],"mappings":"2IAoEA,SAASA,EAAyBC,EAA+BC,GAmB/D,OAlBaC,OAAOC,KAAKH,GAAa,CAAE,GAEvBI,QAAO,CAACC,EAAKC,WAC5B,IAAIC,EAAQP,EAAUM,GAMtB,GAJIE,EAAAA,WAAWD,KACbA,EAAQA,EAAMN,IAGZM,EAAO,CACT,MAAME,EAAWH,EACXI,EAAiE,QAAvDC,EAAAC,EAAQA,SAACH,EAAUR,UAAoC,IAAAU,EAAAA,EAAAL,EACvE,MAAO,IAAID,EAAKK,EACjB,CAED,OAAOL,CAAG,GACT,IAEQQ,KAAK,IAClB,CCxFA,SAASC,KAAWC,GAElB,MAAOR,EAAOS,GAAgBD,EAE9B,OAAa,MAATR,IAA2B,IAAVA,GAAmBU,OAAOC,MAAMX,GAC5CS,GAAgBT,EAGJ,iBAAVA,GAAuC,IAAjBA,EAAMY,QAC9BH,GAGFT,CACT,qBD6FA,YAA2Ba,GACzB,OAAO,SAAUnB,GACf,IAAIoB,EAAoB,GAExB,IAAK,IAAIC,EAAI,EAAGA,EAAIF,EAAWD,OAAQG,IAAK,CAC1C,MAAMtB,EAAYoB,EAAWE,GAEzBd,EAAAA,WAAWR,GACbqB,EAAQE,KAAKvB,EAAUC,IACduB,EAAAA,SAASxB,GAClBqB,EAAUA,EAAQI,OAAO1B,EAAyBC,EAAWC,IACpDD,GACTqB,EAAQE,KAAKG,OAAO1B,GAEvB,CAED,OAAOqB,EAAQR,KAAK,IACtB,CACF,eCjGA,SACEc,EACAX,EACAY,EAAed,GAEf,OAAQb,GAAmB2B,EAAa3B,EAAM0B,GAAOX,EACvD,oBDHM,SAAuBI,GAC3B,OAAO,SAAUnB,GACf,MAAM4B,EAAiBC,UAAQV,GAE/B,IAAIW,GAAM,EAEV,IAAK,IAAIT,EAAI,EAAGA,EAAIO,EAAeV,OAAQG,IAAK,CAC9C,MAAMtB,EAAY6B,EAAeP,GAC3BnB,EAAOD,OAAOC,KAAKH,GAEzB,IAAIgC,GAAO,EAEX,IAAK,IAAIC,EAAI,EAAGA,EAAI9B,EAAKgB,QAAUa,EAAMC,IAAK,CAC5C,MAAM3B,EAAMH,EAAK8B,GACXC,EAAYC,EAAAA,WAAIlC,EAAOK,GACvB8B,EAAiBpC,EAAUM,GAG/B0B,EADEK,MAAMC,QAAQF,GACTJ,GAAQF,EAAOA,QAACM,GAAgBG,SAASL,GACvC1B,EAAAA,WAAW4B,GACbJ,GAAQQ,QAAQJ,EAAeF,IAE/BF,GAASI,IAA+BF,CAElD,CAEDH,EAAMA,GAAOC,CACd,CAED,OAAOD,CACT,CACF"}
|
package/dist/testing/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("../DragDropFile.context-c7cd1441.js"),t=require("@testing-library/react"),i=require("../toArray-b56541b4.js"),n=require("../miranda-compatibility.theme-
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("../DragDropFile.context-c7cd1441.js"),t=require("@testing-library/react"),i=require("../toArray-b56541b4.js"),n=require("../miranda-compatibility.theme-22a9ce26.js"),r=require("react");function o(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}require("@loadsmart/miranda-tokens");var c=o(r);function a(e){return e.parentNode.parentNode.parentNode.parentNode}function d(i){return e.__awaiter(this,void 0,void 0,(function*(){const n=a(i);t.queries.queryByRole(n,"menu")||(yield t.act((()=>e.__awaiter(this,void 0,void 0,(function*(){t.fireEvent.click(i),expect(yield t.queries.findByRole(n,"menu")).toBeInTheDocument()})))))}))}function u(i){return e.__awaiter(this,void 0,void 0,(function*(){const n=a(i);t.queries.queryByRole(n,"menu")&&(yield t.act((()=>e.__awaiter(this,void 0,void 0,(function*(){t.fireEvent.click(t.queries.getByText(n,"Close")),yield t.waitForElementToBeRemoved((()=>t.queries.queryByRole(n,"menu")))})))))}))}const l={getContainer:a,expand:d,collapse:u,pick:function(i,n){return e.__awaiter(this,void 0,void 0,(function*(){const r=a(n);yield d(n),yield t.act((()=>e.__awaiter(this,void 0,void 0,(function*(){n.focus();const e=t.queries.getByLabelText(r,i);e&&"false"==e.getAttribute("aria-checked")&&t.fireEvent.click(e)})))),yield u(n)}))},clear:function(i){return e.__awaiter(this,void 0,void 0,(function*(){const n=a(i);yield t.act((()=>e.__awaiter(this,void 0,void 0,(function*(){const e=t.queries.getByLabelText(n,"Clear selection");t.fireEvent.click(e)})))),yield u(i)}))},getSelectedDates:function(i){return e.__awaiter(this,void 0,void 0,(function*(){const e=a(i);yield d(i);const n=t.queries.queryAllByRole(e,"checkbox",{checked:!0});return yield u(i),n}))}};function s(t){return e.__awaiter(this,void 0,void 0,(function*(){yield l.expand(t)}))}function f(t){return e.__awaiter(this,void 0,void 0,(function*(){yield l.collapse(t)}))}const v={getContainer:l.getContainer,expand:s,collapse:f,pick:function(i,n){return e.__awaiter(this,void 0,void 0,(function*(){const e=l.getContainer(n);yield s(n);const[r,o]=i;if(null!=r){const i=t.queries.getByTestId(e,"input-date-range-start");yield l.pick(r,i)}if(null!=o){const i=t.queries.getByTestId(e,"input-date-range-end");yield l.pick(o,i)}yield f(n)}))},clear:function(t){return e.__awaiter(this,void 0,void 0,(function*(){yield l.clear(t)}))},getSelectedDates:function(t){return e.__awaiter(this,void 0,void 0,(function*(){return l.getSelectedDates(t)}))}},y=e=>e.parentNode,p={dragOver:e=>{const i=y(e),n=t.createEvent.dragOver(i);t.fireEvent(i,n)},dragLeave:e=>{const i=y(e),n=t.createEvent.dragLeave(i);t.fireEvent(i,n)},dropFiles:(e,n)=>{const r=y(e),o=t.createEvent.drop(r);Object.defineProperty(o,"dataTransfer",{value:{files:i.toArray(n)}}),t.fireEvent(r,o)}};function _(e){return e.parentNode.parentNode.parentNode}function h(e){return e.parentNode.parentNode.nextSibling}function g(e){return e.parentNode.nextSibling.nextSibling}function w(e){return e.parentNode}function x(e){return 3===_(e).children.length}function E(i){return e.__awaiter(this,void 0,void 0,(function*(){const e=w(i);t.within(e).queryByTestId("select-trigger-loading")&&(yield t.waitForElementToBeRemoved((()=>t.within(e).queryByTestId("select-trigger-loading")),{timeout:2500}))}))}function b(i){return e.__awaiter(this,void 0,void 0,(function*(){if(yield E(i),x(i))return;const n=g(i);yield t.waitFor((()=>{expect(n).toBeEnabled()})),t.act((()=>{i.dispatchEvent(new MouseEvent("click",{bubbles:!0}))})),yield t.waitFor((()=>e.__awaiter(this,void 0,void 0,(function*(){expect(yield t.within(_(i)).findByRole("listbox")).toBeInTheDocument()}))))}))}function B(i){return e.__awaiter(this,void 0,void 0,(function*(){if(!x(i))return;const e=g(i);t.fireEvent.click(e),yield t.waitFor((()=>{expect(t.within(_(i)).queryByRole("listbox")).not.toBeInTheDocument()}))}))}const q={select:function(i,n){return e.__awaiter(this,void 0,void 0,(function*(){yield b(n);const e=h(n),r=yield t.within(e).findByLabelText(i);r&&"false"==r.getAttribute("aria-selected")&&(t.fireEvent.mouseDown(r),t.act((()=>{r.focus()})),t.fireEvent.mouseUp(r),t.fireEvent.click(r)),yield B(n)}))},unselect:function(i,n){return e.__awaiter(this,void 0,void 0,(function*(){yield b(n);const e=h(n),r=yield t.within(e).findByLabelText(i);r&&"true"===r.getAttribute("aria-selected")&&t.fireEvent.click(r),yield B(n)}))},clear:function(i){return e.__awaiter(this,void 0,void 0,(function*(){yield E(i);const e=w(i),n=t.within(e).getByTestId("select-trigger-clear");n&&t.fireEvent.click(n)}))},search:function(i,n){return e.__awaiter(this,void 0,void 0,(function*(){t.fireEvent.change(n,{target:{value:i}}),yield E(n);const e=h(n);yield t.within(e).findAllByRole("option")}))},expand:b,collapse:B,getOptions:function(i){return e.__awaiter(this,void 0,void 0,(function*(){yield b(i);const e=h(i),n=t.within(e).queryAllByRole("option");return yield B(i),n}))},getSelectedOptions:function(i){return e.__awaiter(this,void 0,void 0,(function*(){yield b(i);const e=h(i);let n=[];try{n=yield t.within(e).findAllByRole("option",{selected:!0})}catch(e){n=[]}return yield B(i),n}))},isMenuExpanded:x};const m={fileList:[],onFilesAdded:jest.fn(),onRetryUpload:jest.fn(),onRemoveFile:jest.fn()};exports.DatePickerEvent=l,exports.DateRangePickerEvent=v,exports.DragDropFileEvent=p,exports.SelectEvent=q,exports.getInterpolatedStyles=function(e){return i.toArray(e).map((e=>{for(;n.isFunction(e);)e=e({theme:n.alice});return e})).join("")},exports.renderWithDragDropFileProvider=(i,n)=>{const r=Object.assign(Object.assign({},m),n);return t.render((o=i,c.default.createElement(e.DragDropFileContext.Provider,{value:r},o)));var o};
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/dist/theming/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("../miranda-compatibility.theme-
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("../miranda-compatibility.theme-22a9ce26.js");require("@loadsmart/miranda-tokens");var t=Object.freeze({__proto__:null,Alice:e.alice,Loadsmart:e.loadsmart,Miranda:e.mirandaCompatibility});function r(t,r){const a=e.isFunction(t)?t(r):t;return r.theme[a]}exports.Themes=t,exports.getToken=function(e,t){return void 0===t?t=>r(e,t):r(e,t)};
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -117,6 +117,7 @@ declare const alice: {
|
|
|
117
117
|
'button-large-height': string | number;
|
|
118
118
|
'button-large-padding-x': string | number;
|
|
119
119
|
'button-large-padding-y': string;
|
|
120
|
+
'button-outline-offset': string;
|
|
120
121
|
'button-primary-background': string | number;
|
|
121
122
|
'button-primary-background--hover': string | number;
|
|
122
123
|
'button-primary-background--focus': string | number;
|
|
@@ -132,7 +133,8 @@ declare const alice: {
|
|
|
132
133
|
'button-primary-color--focus': string | number;
|
|
133
134
|
'button-primary-color--active': string | number;
|
|
134
135
|
'button-primary-color--disabled': string | number;
|
|
135
|
-
'button-primary-outline': string
|
|
136
|
+
'button-primary-outline': string;
|
|
137
|
+
'button-primary-box-shadow': string | number;
|
|
136
138
|
'button-secondary-background': string | number;
|
|
137
139
|
'button-secondary-background--hover': string | number;
|
|
138
140
|
'button-secondary-background--focus': string | number;
|
|
@@ -148,7 +150,8 @@ declare const alice: {
|
|
|
148
150
|
'button-secondary-color--focus': string | number;
|
|
149
151
|
'button-secondary-color--active': string | number;
|
|
150
152
|
'button-secondary-color--disabled': string | number;
|
|
151
|
-
'button-secondary-outline': string
|
|
153
|
+
'button-secondary-outline': string;
|
|
154
|
+
'button-secondary-box-shadow': string | number;
|
|
152
155
|
'button-secondary-dark-background': string | number;
|
|
153
156
|
'button-secondary-dark-background--hover': string | number;
|
|
154
157
|
'button-secondary-dark-background--focus': string | number;
|
|
@@ -164,6 +167,23 @@ declare const alice: {
|
|
|
164
167
|
'button-secondary-dark-color--focus': string | number;
|
|
165
168
|
'button-secondary-dark-color--active': string | number;
|
|
166
169
|
'button-secondary-dark-color--disabled': string | number;
|
|
170
|
+
'button-tertiary-background': string | number;
|
|
171
|
+
'button-tertiary-background--hover': string | number;
|
|
172
|
+
'button-tertiary-background--focus': string | number;
|
|
173
|
+
'button-tertiary-background--active': string | number;
|
|
174
|
+
'button-tertiary-background--disabled': string | number;
|
|
175
|
+
'button-tertiary-border-color': string | number;
|
|
176
|
+
'button-tertiary-border-color--hover': string | number;
|
|
177
|
+
'button-tertiary-border-color--focus': string | number;
|
|
178
|
+
'button-tertiary-border-color--active': string | number;
|
|
179
|
+
'button-tertiary-border-color--disabled': string | number;
|
|
180
|
+
'button-tertiary-color': string | number;
|
|
181
|
+
'button-tertiary-color--hover': string | number;
|
|
182
|
+
'button-tertiary-color--focus': string | number;
|
|
183
|
+
'button-tertiary-color--active': string | number;
|
|
184
|
+
'button-tertiary-color--disabled': string | number;
|
|
185
|
+
'button-tertiary-outline': string;
|
|
186
|
+
'button-tertiary-box-shadow': string;
|
|
167
187
|
'button-warning-background': string | number;
|
|
168
188
|
'button-warning-background--hover': string | number;
|
|
169
189
|
'button-warning-background--focus': string | number;
|
|
@@ -179,7 +199,8 @@ declare const alice: {
|
|
|
179
199
|
'button-warning-color--focus': string | number;
|
|
180
200
|
'button-warning-color--active': string | number;
|
|
181
201
|
'button-warning-color--disabled': string | number;
|
|
182
|
-
'button-warning-outline': string
|
|
202
|
+
'button-warning-outline': string;
|
|
203
|
+
'button-warning-box-shadow': string | number;
|
|
183
204
|
'button-icon-border-radius': string | number;
|
|
184
205
|
'button-icon-small-width': string | number;
|
|
185
206
|
'button-icon-width': string | number;
|
|
@@ -199,37 +220,43 @@ declare const alice: {
|
|
|
199
220
|
'button-icon-color--focus': string | number;
|
|
200
221
|
'button-icon-color--active': string | number;
|
|
201
222
|
'button-icon-color--disabled': string | number;
|
|
202
|
-
'button-icon-
|
|
223
|
+
'button-icon-box-shadow': string | number;
|
|
224
|
+
'button-icon-outline': string;
|
|
203
225
|
'tag-border-radius': string;
|
|
204
226
|
'tag-border-width': string | number;
|
|
205
|
-
'tag-font-weight': string | number;
|
|
206
227
|
'tag-font-height': string | number;
|
|
207
228
|
'tag-spacing': string;
|
|
208
|
-
'tag-spacing
|
|
229
|
+
'tag-removable-spacing': string;
|
|
209
230
|
'tag-width': string;
|
|
210
|
-
'tag-
|
|
231
|
+
'tag-box-shadow': string | number;
|
|
232
|
+
'tag-outline-offset': string;
|
|
211
233
|
'tag-remove-button-background': string | number;
|
|
212
234
|
'tag-remove-button-border-radius': string;
|
|
213
235
|
'tag-icon-spacing': string | number;
|
|
214
236
|
'tag-small-font-size': string | number;
|
|
237
|
+
'tag-small-font-weight': string | number;
|
|
215
238
|
'tag-small-height': string;
|
|
216
239
|
'tag-small-transform': string;
|
|
217
240
|
'tag-small-leading-display': string;
|
|
218
241
|
'tag-small-remove-button-size': string;
|
|
219
242
|
'tag-small-remove-button-icon-size': string;
|
|
220
|
-
'tag-small-spacing
|
|
243
|
+
'tag-small-spacing': string;
|
|
244
|
+
'tag-small-removable-spacing': string;
|
|
221
245
|
'tag-font-size': string | number;
|
|
246
|
+
'tag-font-weight': string | number;
|
|
222
247
|
'tag-height': string;
|
|
223
248
|
'tag-transform': string;
|
|
224
249
|
'tag-leading-display': string;
|
|
225
250
|
'tag-remove-button-size': string;
|
|
226
251
|
'tag-remove-button-icon-size': string;
|
|
227
252
|
'tag-large-font-size': string | number;
|
|
253
|
+
'tag-large-font-weight': string | number;
|
|
228
254
|
'tag-large-height': string;
|
|
229
255
|
'tag-large-transform': string;
|
|
230
256
|
'tag-large-leading-display': string;
|
|
231
257
|
'tag-large-remove-button-size': string;
|
|
232
258
|
'tag-large-remove-button-icon-size': string;
|
|
259
|
+
'tag-large-spacing': string;
|
|
233
260
|
'tag-default-background': string | number;
|
|
234
261
|
'tag-default-background--hover': string | number;
|
|
235
262
|
'tag-default-background--focus': string | number;
|
|
@@ -239,6 +266,7 @@ declare const alice: {
|
|
|
239
266
|
'tag-default-border-color': string;
|
|
240
267
|
'tag-default-border-color--hover': string;
|
|
241
268
|
'tag-default-border-color--focus': string;
|
|
269
|
+
'tag-default-outline': string;
|
|
242
270
|
'tag-outlined-background': string | number;
|
|
243
271
|
'tag-outlined-background--hover': string | number;
|
|
244
272
|
'tag-outlined-background--focus': string | number;
|
|
@@ -248,6 +276,7 @@ declare const alice: {
|
|
|
248
276
|
'tag-outlined-border-color': string | number;
|
|
249
277
|
'tag-outlined-border-color--hover': string | number;
|
|
250
278
|
'tag-outlined-border-color--focus': string | number;
|
|
279
|
+
'tag-outline-outline': string;
|
|
251
280
|
'tag-accent-background': string | number;
|
|
252
281
|
'tag-accent-background--hover': string | number;
|
|
253
282
|
'tag-accent-background--focus': string | number;
|
|
@@ -257,6 +286,7 @@ declare const alice: {
|
|
|
257
286
|
'tag-accent-border-color': string;
|
|
258
287
|
'tag-accent-border-color--hover': string;
|
|
259
288
|
'tag-accent-border-color--focus': string;
|
|
289
|
+
'tag-accent-outline': string;
|
|
260
290
|
'tag-success-background': string | number;
|
|
261
291
|
'tag-success-background--hover': string | number;
|
|
262
292
|
'tag-success-background--focus': string | number;
|
|
@@ -266,6 +296,7 @@ declare const alice: {
|
|
|
266
296
|
'tag-success-border-color': string | number;
|
|
267
297
|
'tag-success-border-color--hover': string | number;
|
|
268
298
|
'tag-success-border-color--focus': string | number;
|
|
299
|
+
'tag-success-outline': string;
|
|
269
300
|
'tag-warning-background': string | number;
|
|
270
301
|
'tag-warning-background--hover': string | number;
|
|
271
302
|
'tag-warning-background--focus': string | number;
|
|
@@ -275,6 +306,7 @@ declare const alice: {
|
|
|
275
306
|
'tag-warning-border-color': string | number;
|
|
276
307
|
'tag-warning-border-color--hover': string | number;
|
|
277
308
|
'tag-warning-border-color--focus': string | number;
|
|
309
|
+
'tag-warning-outline': string;
|
|
278
310
|
'tag-danger-background': string | number;
|
|
279
311
|
'tag-danger-background--hover': string | number;
|
|
280
312
|
'tag-danger-background--focus': string | number;
|
|
@@ -284,12 +316,15 @@ declare const alice: {
|
|
|
284
316
|
'tag-danger-border-color': string | number;
|
|
285
317
|
'tag-danger-border-color--hover': string | number;
|
|
286
318
|
'tag-danger-border-color--focus': string | number;
|
|
319
|
+
'tag-danger-outline': string;
|
|
287
320
|
'checkbox-color': string | number;
|
|
288
321
|
'checkbox-font-weight': string | number;
|
|
289
322
|
'checkbox-font-size': string | number;
|
|
290
323
|
'checkbox-selector-border-radius': string | number;
|
|
291
324
|
'checkbox-selector-size': string;
|
|
292
|
-
'checkbox-selector-
|
|
325
|
+
'checkbox-selector-box-shadow': string | number;
|
|
326
|
+
'checkbox-selector-outline': string;
|
|
327
|
+
'checkbox-selector-outline-offset': string;
|
|
293
328
|
'checkbox-small-font-size': string | number;
|
|
294
329
|
'checkbox-selector-icon-color': string | number;
|
|
295
330
|
'checkbox-selector-background': string | number;
|
|
@@ -322,7 +357,7 @@ declare const alice: {
|
|
|
322
357
|
'radio-font-size': string | number;
|
|
323
358
|
'radio-selector-border-radius': string | number;
|
|
324
359
|
'radio-selector-size': string;
|
|
325
|
-
'radio-selector-
|
|
360
|
+
'radio-selector-box-shadow': string | number;
|
|
326
361
|
'radio-small-font-size': string | number;
|
|
327
362
|
'radio-small-selector-size': string;
|
|
328
363
|
'radio-selector-background': string | number;
|
|
@@ -373,7 +408,9 @@ declare const alice: {
|
|
|
373
408
|
'text-field-height': string | number;
|
|
374
409
|
'text-field-padding-x': string | number;
|
|
375
410
|
'text-field-padding-y': string | number;
|
|
376
|
-
'text-field-
|
|
411
|
+
'text-field-box-shadow': string | number;
|
|
412
|
+
'text-field-outline': string;
|
|
413
|
+
'text-field-outline-offset': string;
|
|
377
414
|
'text-field-small-height': string | number;
|
|
378
415
|
'text-field-small-padding-x': string | number;
|
|
379
416
|
'text-field-small-padding-y': string | number;
|
|
@@ -398,7 +435,7 @@ declare const alice: {
|
|
|
398
435
|
'text-field-dark-border-color--disabled': string | number;
|
|
399
436
|
'text-field-success-border-color': string | number;
|
|
400
437
|
'text-field-danger-border-color': string | number;
|
|
401
|
-
'text-field-dark-
|
|
438
|
+
'text-field-dark-box-shadow': string | number;
|
|
402
439
|
'textarea-border-radius': string | number;
|
|
403
440
|
'textarea-color': string | number;
|
|
404
441
|
'textarea-font-size': string | number;
|
|
@@ -407,7 +444,9 @@ declare const alice: {
|
|
|
407
444
|
'textarea-min-height': string;
|
|
408
445
|
'textarea-padding-x': string | number;
|
|
409
446
|
'textarea-padding-y': string | number;
|
|
410
|
-
'textarea-
|
|
447
|
+
'textarea-box-shadow': string | number;
|
|
448
|
+
'textarea-outline': string;
|
|
449
|
+
'textarea-outline-offset': string;
|
|
411
450
|
'textarea-small-padding-x': string | number;
|
|
412
451
|
'textarea-small-padding-y': string | number;
|
|
413
452
|
'textarea-small-font-size': string | number;
|
|
@@ -431,12 +470,15 @@ declare const alice: {
|
|
|
431
470
|
'textarea-dark-border-color--disabled': string | number;
|
|
432
471
|
'textarea-success-border-color': string | number;
|
|
433
472
|
'textarea-danger-border-color': string | number;
|
|
434
|
-
'textarea-dark-
|
|
473
|
+
'textarea-dark-box-shadow': string | number;
|
|
435
474
|
'link-font-size': string | number;
|
|
436
475
|
'link-font-height': string | number;
|
|
437
476
|
'link-color': string | number;
|
|
438
477
|
'link-font-weight': string | number;
|
|
439
478
|
'link-font-weight--hover': string | number;
|
|
479
|
+
'link-box-shadow': string | number;
|
|
480
|
+
'link-outline': string;
|
|
481
|
+
'link-outline-offset': string;
|
|
440
482
|
'breadcrumbs-font-size': string | number;
|
|
441
483
|
'breadcrumbs-font-height': string | number;
|
|
442
484
|
'breadcrumbs-font-weight': string | number;
|
|
@@ -520,7 +562,9 @@ declare const alice: {
|
|
|
520
562
|
'switch-width': string;
|
|
521
563
|
'switch-height': string;
|
|
522
564
|
'switch-border-radius': string;
|
|
523
|
-
'switch-
|
|
565
|
+
'switch-box-shadow': string | number;
|
|
566
|
+
'switch-outline': string;
|
|
567
|
+
'switch-outline-offset': string;
|
|
524
568
|
'switch-large-width': string;
|
|
525
569
|
'switch-large-height': string;
|
|
526
570
|
'switch-large-border-radius': string;
|
|
@@ -619,9 +663,14 @@ declare const alice: {
|
|
|
619
663
|
'top-navigation-item-icon-color': string | number;
|
|
620
664
|
'top-navigation-item-color': string | number;
|
|
621
665
|
'top-navigation-item-color--hover': string | number;
|
|
666
|
+
'select-trigger-height': string;
|
|
667
|
+
'select-trigger-border-color': string | number;
|
|
622
668
|
'select-selected-option-check-color': string | number;
|
|
623
669
|
'select-selected-option-background-color': string | number;
|
|
624
670
|
'toggle-text-transform': string;
|
|
671
|
+
'toggle-box-shadow': string | number;
|
|
672
|
+
'toggle-outline': string;
|
|
673
|
+
'toggle-outline-offset': string;
|
|
625
674
|
'toggle-background-color': string | number;
|
|
626
675
|
'toggle-background-color--hover': string | number;
|
|
627
676
|
'toggle-background-color--focus': string | number;
|
|
@@ -675,10 +724,16 @@ declare const alice: {
|
|
|
675
724
|
'toggle-group-single-border-color': string | number;
|
|
676
725
|
'toggle-group-single-border-radius': string | number;
|
|
677
726
|
'toggle-group-single-padding': string;
|
|
727
|
+
'dropdown-trigger-border-color': string | number;
|
|
728
|
+
'dropdown-trigger-dark-border-color': string | number;
|
|
729
|
+
'dropdown-trigger-outlined-border-color': string | number;
|
|
678
730
|
'dropdown-trigger-expanded-color': string | number;
|
|
679
731
|
'dropdown-trigger-height': string | number;
|
|
680
732
|
'dropdown-trigger-small-height': string | number;
|
|
681
733
|
'dropdown-trigger-large-height': string | number;
|
|
734
|
+
'dropdown-trigger-box-shadow': string | number;
|
|
735
|
+
'dropdown-trigger-outline': string;
|
|
736
|
+
'dropdown-trigger-outline-offset': string;
|
|
682
737
|
'height-small': string;
|
|
683
738
|
'height-default': string;
|
|
684
739
|
'height-large': string;
|
|
@@ -99,6 +99,7 @@ declare const loadsmart: {
|
|
|
99
99
|
'button-large-height': string | number;
|
|
100
100
|
'button-large-padding-x': string | number;
|
|
101
101
|
'button-large-padding-y': string;
|
|
102
|
+
'button-outline-offset': string;
|
|
102
103
|
'button-primary-background': string | number;
|
|
103
104
|
'button-primary-background--hover': string | number;
|
|
104
105
|
'button-primary-background--focus': string | number;
|
|
@@ -114,7 +115,8 @@ declare const loadsmart: {
|
|
|
114
115
|
'button-primary-color--focus': string | number;
|
|
115
116
|
'button-primary-color--active': string | number;
|
|
116
117
|
'button-primary-color--disabled': string | number;
|
|
117
|
-
'button-primary-outline': string
|
|
118
|
+
'button-primary-outline': string;
|
|
119
|
+
'button-primary-box-shadow': string | number;
|
|
118
120
|
'button-secondary-background': string | number;
|
|
119
121
|
'button-secondary-background--hover': string | number;
|
|
120
122
|
'button-secondary-background--focus': string | number;
|
|
@@ -130,7 +132,8 @@ declare const loadsmart: {
|
|
|
130
132
|
'button-secondary-color--focus': string | number;
|
|
131
133
|
'button-secondary-color--active': string | number;
|
|
132
134
|
'button-secondary-color--disabled': string | number;
|
|
133
|
-
'button-secondary-outline': string
|
|
135
|
+
'button-secondary-outline': string;
|
|
136
|
+
'button-secondary-box-shadow': string | number;
|
|
134
137
|
'button-secondary-dark-background': string | number;
|
|
135
138
|
'button-secondary-dark-background--hover': string | number;
|
|
136
139
|
'button-secondary-dark-background--focus': string | number;
|
|
@@ -146,6 +149,23 @@ declare const loadsmart: {
|
|
|
146
149
|
'button-secondary-dark-color--focus': string | number;
|
|
147
150
|
'button-secondary-dark-color--active': string | number;
|
|
148
151
|
'button-secondary-dark-color--disabled': string | number;
|
|
152
|
+
'button-tertiary-background': string | number;
|
|
153
|
+
'button-tertiary-background--hover': string | number;
|
|
154
|
+
'button-tertiary-background--focus': string | number;
|
|
155
|
+
'button-tertiary-background--active': string | number;
|
|
156
|
+
'button-tertiary-background--disabled': string | number;
|
|
157
|
+
'button-tertiary-border-color': string | number;
|
|
158
|
+
'button-tertiary-border-color--hover': string | number;
|
|
159
|
+
'button-tertiary-border-color--focus': string | number;
|
|
160
|
+
'button-tertiary-border-color--active': string | number;
|
|
161
|
+
'button-tertiary-border-color--disabled': string | number;
|
|
162
|
+
'button-tertiary-color': string | number;
|
|
163
|
+
'button-tertiary-color--hover': string | number;
|
|
164
|
+
'button-tertiary-color--focus': string | number;
|
|
165
|
+
'button-tertiary-color--active': string | number;
|
|
166
|
+
'button-tertiary-color--disabled': string | number;
|
|
167
|
+
'button-tertiary-outline': string;
|
|
168
|
+
'button-tertiary-box-shadow': string;
|
|
149
169
|
'button-warning-background': string | number;
|
|
150
170
|
'button-warning-background--hover': string | number;
|
|
151
171
|
'button-warning-background--focus': string | number;
|
|
@@ -161,7 +181,8 @@ declare const loadsmart: {
|
|
|
161
181
|
'button-warning-color--focus': string | number;
|
|
162
182
|
'button-warning-color--active': string | number;
|
|
163
183
|
'button-warning-color--disabled': string | number;
|
|
164
|
-
'button-warning-outline': string
|
|
184
|
+
'button-warning-outline': string;
|
|
185
|
+
'button-warning-box-shadow': string | number;
|
|
165
186
|
'button-icon-border-radius': string | number;
|
|
166
187
|
'button-icon-small-width': string | number;
|
|
167
188
|
'button-icon-width': string | number;
|
|
@@ -181,37 +202,43 @@ declare const loadsmart: {
|
|
|
181
202
|
'button-icon-color--focus': string | number;
|
|
182
203
|
'button-icon-color--active': string | number;
|
|
183
204
|
'button-icon-color--disabled': string | number;
|
|
184
|
-
'button-icon-
|
|
205
|
+
'button-icon-box-shadow': string | number;
|
|
206
|
+
'button-icon-outline': string;
|
|
185
207
|
'tag-border-radius': string;
|
|
186
208
|
'tag-border-width': string | number;
|
|
187
|
-
'tag-font-weight': string | number;
|
|
188
209
|
'tag-font-height': string | number;
|
|
189
210
|
'tag-spacing': string;
|
|
190
|
-
'tag-spacing
|
|
211
|
+
'tag-removable-spacing': string;
|
|
191
212
|
'tag-width': string;
|
|
192
|
-
'tag-
|
|
213
|
+
'tag-box-shadow': string | number;
|
|
214
|
+
'tag-outline-offset': string;
|
|
193
215
|
'tag-remove-button-background': string | number;
|
|
194
216
|
'tag-remove-button-border-radius': string;
|
|
195
217
|
'tag-icon-spacing': string | number;
|
|
196
218
|
'tag-small-font-size': string | number;
|
|
219
|
+
'tag-small-font-weight': string | number;
|
|
197
220
|
'tag-small-height': string;
|
|
198
221
|
'tag-small-transform': string;
|
|
199
222
|
'tag-small-leading-display': string;
|
|
200
223
|
'tag-small-remove-button-size': string;
|
|
201
224
|
'tag-small-remove-button-icon-size': string;
|
|
202
|
-
'tag-small-spacing
|
|
225
|
+
'tag-small-spacing': string;
|
|
226
|
+
'tag-small-removable-spacing': string;
|
|
203
227
|
'tag-font-size': string | number;
|
|
228
|
+
'tag-font-weight': string | number;
|
|
204
229
|
'tag-height': string;
|
|
205
230
|
'tag-transform': string;
|
|
206
231
|
'tag-leading-display': string;
|
|
207
232
|
'tag-remove-button-size': string;
|
|
208
233
|
'tag-remove-button-icon-size': string;
|
|
209
234
|
'tag-large-font-size': string | number;
|
|
235
|
+
'tag-large-font-weight': string | number;
|
|
210
236
|
'tag-large-height': string;
|
|
211
237
|
'tag-large-transform': string;
|
|
212
238
|
'tag-large-leading-display': string;
|
|
213
239
|
'tag-large-remove-button-size': string;
|
|
214
240
|
'tag-large-remove-button-icon-size': string;
|
|
241
|
+
'tag-large-spacing': string;
|
|
215
242
|
'tag-default-background': string | number;
|
|
216
243
|
'tag-default-background--hover': string | number;
|
|
217
244
|
'tag-default-background--focus': string | number;
|
|
@@ -221,6 +248,7 @@ declare const loadsmart: {
|
|
|
221
248
|
'tag-default-border-color': string;
|
|
222
249
|
'tag-default-border-color--hover': string;
|
|
223
250
|
'tag-default-border-color--focus': string;
|
|
251
|
+
'tag-default-outline': string;
|
|
224
252
|
'tag-outlined-background': string | number;
|
|
225
253
|
'tag-outlined-background--hover': string | number;
|
|
226
254
|
'tag-outlined-background--focus': string | number;
|
|
@@ -230,6 +258,7 @@ declare const loadsmart: {
|
|
|
230
258
|
'tag-outlined-border-color': string | number;
|
|
231
259
|
'tag-outlined-border-color--hover': string | number;
|
|
232
260
|
'tag-outlined-border-color--focus': string | number;
|
|
261
|
+
'tag-outline-outline': string;
|
|
233
262
|
'tag-accent-background': string | number;
|
|
234
263
|
'tag-accent-background--hover': string | number;
|
|
235
264
|
'tag-accent-background--focus': string | number;
|
|
@@ -239,6 +268,7 @@ declare const loadsmart: {
|
|
|
239
268
|
'tag-accent-border-color': string;
|
|
240
269
|
'tag-accent-border-color--hover': string;
|
|
241
270
|
'tag-accent-border-color--focus': string;
|
|
271
|
+
'tag-accent-outline': string;
|
|
242
272
|
'tag-success-background': string | number;
|
|
243
273
|
'tag-success-background--hover': string | number;
|
|
244
274
|
'tag-success-background--focus': string | number;
|
|
@@ -248,6 +278,7 @@ declare const loadsmart: {
|
|
|
248
278
|
'tag-success-border-color': string | number;
|
|
249
279
|
'tag-success-border-color--hover': string | number;
|
|
250
280
|
'tag-success-border-color--focus': string | number;
|
|
281
|
+
'tag-success-outline': string;
|
|
251
282
|
'tag-warning-background': string | number;
|
|
252
283
|
'tag-warning-background--hover': string | number;
|
|
253
284
|
'tag-warning-background--focus': string | number;
|
|
@@ -257,6 +288,7 @@ declare const loadsmart: {
|
|
|
257
288
|
'tag-warning-border-color': string | number;
|
|
258
289
|
'tag-warning-border-color--hover': string | number;
|
|
259
290
|
'tag-warning-border-color--focus': string | number;
|
|
291
|
+
'tag-warning-outline': string;
|
|
260
292
|
'tag-danger-background': string | number;
|
|
261
293
|
'tag-danger-background--hover': string | number;
|
|
262
294
|
'tag-danger-background--focus': string | number;
|
|
@@ -266,12 +298,15 @@ declare const loadsmart: {
|
|
|
266
298
|
'tag-danger-border-color': string | number;
|
|
267
299
|
'tag-danger-border-color--hover': string | number;
|
|
268
300
|
'tag-danger-border-color--focus': string | number;
|
|
301
|
+
'tag-danger-outline': string;
|
|
269
302
|
'checkbox-color': string | number;
|
|
270
303
|
'checkbox-font-weight': string | number;
|
|
271
304
|
'checkbox-font-size': string | number;
|
|
272
305
|
'checkbox-selector-border-radius': string | number;
|
|
273
306
|
'checkbox-selector-size': string;
|
|
274
|
-
'checkbox-selector-
|
|
307
|
+
'checkbox-selector-box-shadow': string | number;
|
|
308
|
+
'checkbox-selector-outline': string;
|
|
309
|
+
'checkbox-selector-outline-offset': string;
|
|
275
310
|
'checkbox-small-font-size': string | number;
|
|
276
311
|
'checkbox-selector-icon-color': string | number;
|
|
277
312
|
'checkbox-selector-background': string | number;
|
|
@@ -304,7 +339,7 @@ declare const loadsmart: {
|
|
|
304
339
|
'radio-font-size': string | number;
|
|
305
340
|
'radio-selector-border-radius': string | number;
|
|
306
341
|
'radio-selector-size': string;
|
|
307
|
-
'radio-selector-
|
|
342
|
+
'radio-selector-box-shadow': string | number;
|
|
308
343
|
'radio-small-font-size': string | number;
|
|
309
344
|
'radio-small-selector-size': string;
|
|
310
345
|
'radio-selector-background': string | number;
|
|
@@ -355,7 +390,9 @@ declare const loadsmart: {
|
|
|
355
390
|
'text-field-height': string | number;
|
|
356
391
|
'text-field-padding-x': string | number;
|
|
357
392
|
'text-field-padding-y': string | number;
|
|
358
|
-
'text-field-
|
|
393
|
+
'text-field-box-shadow': string | number;
|
|
394
|
+
'text-field-outline': string;
|
|
395
|
+
'text-field-outline-offset': string;
|
|
359
396
|
'text-field-small-height': string | number;
|
|
360
397
|
'text-field-small-padding-x': string | number;
|
|
361
398
|
'text-field-small-padding-y': string | number;
|
|
@@ -380,7 +417,7 @@ declare const loadsmart: {
|
|
|
380
417
|
'text-field-dark-border-color--disabled': string | number;
|
|
381
418
|
'text-field-success-border-color': string | number;
|
|
382
419
|
'text-field-danger-border-color': string | number;
|
|
383
|
-
'text-field-dark-
|
|
420
|
+
'text-field-dark-box-shadow': string | number;
|
|
384
421
|
'textarea-border-radius': string | number;
|
|
385
422
|
'textarea-color': string | number;
|
|
386
423
|
'textarea-font-size': string | number;
|
|
@@ -389,7 +426,9 @@ declare const loadsmart: {
|
|
|
389
426
|
'textarea-min-height': string;
|
|
390
427
|
'textarea-padding-x': string | number;
|
|
391
428
|
'textarea-padding-y': string | number;
|
|
392
|
-
'textarea-
|
|
429
|
+
'textarea-box-shadow': string | number;
|
|
430
|
+
'textarea-outline': string;
|
|
431
|
+
'textarea-outline-offset': string;
|
|
393
432
|
'textarea-small-padding-x': string | number;
|
|
394
433
|
'textarea-small-padding-y': string | number;
|
|
395
434
|
'textarea-small-font-size': string | number;
|
|
@@ -413,12 +452,15 @@ declare const loadsmart: {
|
|
|
413
452
|
'textarea-dark-border-color--disabled': string | number;
|
|
414
453
|
'textarea-success-border-color': string | number;
|
|
415
454
|
'textarea-danger-border-color': string | number;
|
|
416
|
-
'textarea-dark-
|
|
455
|
+
'textarea-dark-box-shadow': string | number;
|
|
417
456
|
'link-font-size': string | number;
|
|
418
457
|
'link-font-height': string | number;
|
|
419
458
|
'link-color': string | number;
|
|
420
459
|
'link-font-weight': string | number;
|
|
421
460
|
'link-font-weight--hover': string | number;
|
|
461
|
+
'link-box-shadow': string | number;
|
|
462
|
+
'link-outline': string;
|
|
463
|
+
'link-outline-offset': string;
|
|
422
464
|
'breadcrumbs-font-size': string | number;
|
|
423
465
|
'breadcrumbs-font-height': string | number;
|
|
424
466
|
'breadcrumbs-font-weight': string | number;
|
|
@@ -502,7 +544,9 @@ declare const loadsmart: {
|
|
|
502
544
|
'switch-width': string;
|
|
503
545
|
'switch-height': string;
|
|
504
546
|
'switch-border-radius': string;
|
|
505
|
-
'switch-
|
|
547
|
+
'switch-box-shadow': string | number;
|
|
548
|
+
'switch-outline': string;
|
|
549
|
+
'switch-outline-offset': string;
|
|
506
550
|
'switch-large-width': string;
|
|
507
551
|
'switch-large-height': string;
|
|
508
552
|
'switch-large-border-radius': string;
|
|
@@ -601,9 +645,14 @@ declare const loadsmart: {
|
|
|
601
645
|
'top-navigation-item-icon-color': string | number;
|
|
602
646
|
'top-navigation-item-color': string | number;
|
|
603
647
|
'top-navigation-item-color--hover': string | number;
|
|
648
|
+
'select-trigger-height': string;
|
|
649
|
+
'select-trigger-border-color': string | number;
|
|
604
650
|
'select-selected-option-check-color': string | number;
|
|
605
651
|
'select-selected-option-background-color': string | number;
|
|
606
652
|
'toggle-text-transform': string;
|
|
653
|
+
'toggle-box-shadow': string | number;
|
|
654
|
+
'toggle-outline': string;
|
|
655
|
+
'toggle-outline-offset': string;
|
|
607
656
|
'toggle-background-color': string | number;
|
|
608
657
|
'toggle-background-color--hover': string | number;
|
|
609
658
|
'toggle-background-color--focus': string | number;
|
|
@@ -657,10 +706,16 @@ declare const loadsmart: {
|
|
|
657
706
|
'toggle-group-single-border-color': string | number;
|
|
658
707
|
'toggle-group-single-border-radius': string | number;
|
|
659
708
|
'toggle-group-single-padding': string;
|
|
709
|
+
'dropdown-trigger-border-color': string | number;
|
|
710
|
+
'dropdown-trigger-dark-border-color': string | number;
|
|
711
|
+
'dropdown-trigger-outlined-border-color': string | number;
|
|
660
712
|
'dropdown-trigger-expanded-color': string | number;
|
|
661
713
|
'dropdown-trigger-height': string | number;
|
|
662
714
|
'dropdown-trigger-small-height': string | number;
|
|
663
715
|
'dropdown-trigger-large-height': string | number;
|
|
716
|
+
'dropdown-trigger-box-shadow': string | number;
|
|
717
|
+
'dropdown-trigger-outline': string;
|
|
718
|
+
'dropdown-trigger-outline-offset': string;
|
|
664
719
|
'height-small': string;
|
|
665
720
|
'height-default': string;
|
|
666
721
|
'height-large': string;
|