stratosphere-ui 0.1.0 → 0.1.2
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/common/index.d.ts +1 -0
- package/dist/{types.d.ts → common/types.d.ts} +0 -0
- package/dist/components/AlertMessages/AlertMessages.d.ts +4 -4
- package/dist/components/AlertMessages/AlertMessagesList.d.ts +5 -0
- package/dist/components/AlertMessages/AlertMessagesProvider.d.ts +3 -3
- package/dist/components/AlertMessages/index.d.ts +0 -1
- package/dist/components/Badge/Badge.d.ts +2 -1
- package/dist/components/Dropdown/Dropdown.d.ts +1 -2
- package/dist/components/Dropdown/DropdownMenu.d.ts +7 -3
- package/dist/components/Form/Form.d.ts +0 -1
- package/dist/components/Form/FormCheckbox.d.ts +8 -0
- package/dist/components/Form/FormError.d.ts +1 -2
- package/dist/components/Form/FormRangeSlider.d.ts +23 -0
- package/dist/components/Form/FormSelect.d.ts +15 -0
- package/dist/components/Form/FormToggleSwitch.d.ts +9 -0
- package/dist/components/Form/index.d.ts +4 -1
- package/dist/components/FullScreenLoader/FullScreenLoader.d.ts +2 -0
- package/dist/components/FullScreenLoader/index.d.ts +1 -0
- package/dist/components/LoadingCard/LoadingCard.d.ts +6 -0
- package/dist/components/LoadingCard/index.d.ts +1 -0
- package/dist/components/Modal/Modal.d.ts +13 -0
- package/dist/components/Modal/index.d.ts +1 -0
- package/dist/components/{Form/Typeahead → Typeahead}/TypeaheadDropdown.d.ts +1 -1
- package/dist/components/{Form/Typeahead → Typeahead}/TypeaheadMultiSelect.d.ts +2 -3
- package/dist/components/{Form/Typeahead → Typeahead}/TypeaheadSelect.d.ts +2 -2
- package/dist/components/{Form/Typeahead → Typeahead}/TypeaheadSingleSelect.d.ts +2 -3
- package/dist/components/Typeahead/index.d.ts +2 -0
- package/dist/components/{Form/Typeahead → Typeahead}/useTypeaheadInput.d.ts +1 -1
- package/dist/components/index.d.ts +4 -0
- package/dist/index.d.ts +0 -1
- package/dist/stratosphere-ui.js +24964 -3248
- package/dist/style.css +1 -0
- package/package.json +2 -1
- package/dist/components/Form/Typeahead/index.d.ts +0 -1
package/dist/style.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.multi-range-slider *{box-sizing:border-box;padding:0;margin:0}.multi-range-slider{display:flex;position:relative;border:solid 1px gray;border-radius:10px;padding:20px 10px;box-shadow:1px 1px 4px #000;flex-direction:column;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.multi-range-slider .bar{display:flex}.multi-range-slider .bar-left{width:25%;background-color:#f0f0f0;border-radius:10px 0 0 10px;box-shadow:inset 0 0 5px #000;padding:4px 0}.multi-range-slider .bar-right{width:25%;background-color:#f0f0f0;border-radius:0 10px 10px 0;box-shadow:inset 0 0 5px #000}.multi-range-slider .bar-inner{background-color:#0f0;display:flex;flex-grow:1;flex-shrink:1;position:relative;border:solid 1px black;justify-content:space-between;box-shadow:inset 0 0 5px #000}.multi-range-slider .bar-inner-left,.multi-range-slider .bar-inner-right{width:50%}.multi-range-slider .thumb{background-color:#fff;position:relative;z-index:1;cursor:pointer}.multi-range-slider .thumb:before{content:"";background-color:inherit;position:absolute;width:20px;height:20px;border:solid 1px black;box-shadow:0 0 3px #000,inset 0 0 5px gray;border-radius:50%;z-index:1;margin:-8px -12px;cursor:pointer}.multi-range-slider .input-type-range:focus+.thumb:after{content:"";position:absolute;top:-4px;left:-7px;width:11px;height:11px;z-index:2;border-radius:50%;border:dotted 1px black;box-shadow:0 0 5px #fff,inset 0 0 10px #000}.multi-range-slider .caption{position:absolute;bottom:35px;width:2px;height:2px;left:1px;display:flex;justify-content:center;align-items:center;overflow:visible;display:none}.multi-range-slider .thumb .caption *{position:absolute;min-width:30px;height:30px;font-size:75%;text-align:center;line-height:30px;background-color:#00f;border-radius:15px;color:#fff;box-shadow:0 0 5px #000;padding:0 5px;white-space:nowrap}.multi-range-slider .thumb:active .caption{display:flex}.multi-range-slider .input-type-range:focus+.thumb .caption{display:flex}.multi-range-slider .input-type-range{position:absolute;top:0px;left:0px;width:100%;opacity:0;pointer-events:none}.multi-range-slider .ruler{margin:10px 0 -5px;display:flex;overflow:hidden}.multi-range-slider .ruler .ruler-rule{border-left:solid 1px;border-bottom:solid 1px;display:flex;flex-grow:1;flex-shrink:1;padding:5px 0}.multi-range-slider .ruler .ruler-rule:last-child{border-right:solid 1px}.multi-range-slider .ruler .ruler-sub-rule{border-left:solid 1px;display:flex;flex-grow:1;flex-shrink:1;padding:3px 0;bottom:0px;margin-bottom:-5px}.multi-range-slider .ruler .ruler-sub-rule:first-child{border-left:none}.multi-range-slider .labels{display:flex;justify-content:space-between;padding:0;margin-top:10px;margin-bottom:-20px}.multi-range-slider .label{font-size:80%;display:flex;width:1px;justify-content:center}.multi-range-slider .label:first-child{justify-content:start}.multi-range-slider .label:last-child{justify-content:end}.multi-range-slider.zero-ranage-margin .thumb-left{right:12px}.multi-range-slider.zero-ranage-margin .thumb-right{left:8px}.multi-range-slider-black *{box-sizing:border-box;padding:0;margin:0}.multi-range-slider-black{display:flex;position:relative;background-color:#000;border:solid 1px gray;padding:30px 10px 25px;flex-direction:column;color:#fff;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.multi-range-slider-black .bar{display:flex}.multi-range-slider-black .bar.active *{transition:none}.multi-range-slider-black .bar-left{width:25%;background-color:gray;border-radius:10px 0 0 10px;box-shadow:inset 0 0 5px #000;border:solid 1px black;padding:5px 0}.multi-range-slider-black .bar-right{width:25%;background-color:gray;border-radius:0 10px 10px 0;box-shadow:inset 0 0 5px #000;border:solid 1px black}.multi-range-slider-black .bar-inner{background-color:#0f0;display:flex;flex-grow:1;flex-shrink:1;position:relative;border:solid 1px black;justify-content:space-between;box-shadow:inset 0 0 5px #000}.multi-range-slider-black .bar-inner-left,.multi-range-slider-black .bar-inner-right{width:50%}.multi-range-slider-black .thumb{background-color:#fff;position:relative;z-index:1;cursor:pointer}.multi-range-slider-black .thumb:before{content:"";background-color:inherit;position:absolute;width:20px;height:30px;border:solid 1px black;box-shadow:0 0 5px #000,inset 0 0 10px gray;border-radius:7px;z-index:1;margin:-10px -12px;cursor:pointer}.multi-range-slider-black .input-type-range:focus+.thumb:after{content:"";position:absolute;top:-6px;left:-8px;width:12px;height:22px;z-index:2;border-radius:7px;border:dotted 1px black;box-shadow:0 0 5px #fff,inset 0 0 10px #000}.multi-range-slider-black .caption{position:absolute;bottom:45px;width:2px;height:2px;left:1px;display:flex;justify-content:center;align-items:center;overflow:visible}.multi-range-slider-black .thumb .caption *{position:absolute;min-width:30px;height:30px;font-size:75%;text-align:center;line-height:30px;background-color:#00f;border-radius:15px;color:#fff;box-shadow:0 0 5px #000;padding:0 5px;white-space:nowrap}.multi-range-slider-black .thumb:active .caption{display:flex}.multi-range-slider-black .input-type-range:focus+.thumb .caption{display:flex}.multi-range-slider-black .input-type-range{position:absolute;top:0px;left:0px;width:100%;opacity:0;pointer-events:none}.multi-range-slider-black .ruler{margin:10px 0 -5px;display:flex;overflow:hidden}.multi-range-slider-black .ruler .ruler-rule{border-left:solid 1px;border-bottom:solid 1px;display:flex;flex-grow:1;flex-shrink:1;padding:5px 0}.multi-range-slider-black .ruler .ruler-rule:last-child{border-right:solid 1px}.multi-range-slider-black .ruler .ruler-sub-rule{border-left:solid 1px;display:flex;flex-grow:1;flex-shrink:1;padding:3px 0;bottom:0px;margin-bottom:-5px}.multi-range-slider-black .ruler .ruler-sub-rule:first-child{border-left:none}.multi-range-slider-black .labels{display:flex;justify-content:space-between;padding:0;margin-top:10px;margin-bottom:-20px}.multi-range-slider-black .label{font-size:80%}.multi-range-slider-black.zero-ranage-margin .thumb-left{right:12px}.multi-range-slider-black.zero-ranage-margin .thumb-right{left:8px}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stratosphere-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "React component library for all Stratosphere Labs user interfaces",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
"eslint-plugin-promise": "^6.0.1",
|
|
69
69
|
"eslint-plugin-react": "^7.31.11",
|
|
70
70
|
"eslint-plugin-storybook": "^0.6.8",
|
|
71
|
+
"multi-range-slider-react": "^2.0.2",
|
|
71
72
|
"postcss": "^8.4.20",
|
|
72
73
|
"prettier": "^2.7.1",
|
|
73
74
|
"prism-react-renderer": "^1.3.5",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './TypeaheadSelect';
|