@sylwellsoftware/fray 0.1.0-alpha.1 → 0.2.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/README.md +246 -11
- package/colors/README.md +15 -0
- package/colors/gray/colors.css +29 -0
- package/colors/green/colors.css +29 -0
- package/colors/iceblue/colors.css +29 -0
- package/colors/ocean/colors.css +29 -0
- package/colors/orange/colors.css +29 -0
- package/colors/purple/colors.css +29 -0
- package/colors/red/colors.css +29 -0
- package/colors/yellow/colors.css +29 -0
- package/dist/Components/data/table/DataTable.d.ts.map +1 -1
- package/dist/Components/data/table/TableHeaderCell.d.ts.map +1 -1
- package/dist/Components/dialog/dialog.d.ts.map +1 -1
- package/dist/Components/layout/panel.d.ts.map +1 -1
- package/dist/Components/layout/tabpanel/tabline.d.ts.map +1 -1
- package/dist/Components/lineinputs/checkbox/Checkbox.d.ts.map +1 -1
- package/dist/Components/lineinputs/toggle.d.ts.map +1 -1
- package/dist/Components/status/progressBar.d.ts.map +1 -1
- package/dist/Components/theme/stylesheetPicker.d.ts +40 -0
- package/dist/Components/theme/stylesheetPicker.d.ts.map +1 -0
- package/dist/{button-BRDkmR1C.js → button-CqDGmkBt.js} +87 -78
- package/dist/{button-BRDkmR1C.js.map → button-CqDGmkBt.js.map} +1 -1
- package/dist/experimental.js +104 -66
- package/dist/experimental.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +801 -503
- package/dist/index.js.map +1 -1
- package/dist/{jsx-dev-runtime-CarwHDyL.js → jsx-dev-runtime-DukiDpV9.js} +202 -214
- package/dist/jsx-dev-runtime-DukiDpV9.js.map +1 -0
- package/dist/jsx-dev-runtime.js +1 -1
- package/dist/jsx-runtime.js +1 -1
- package/dist/styling/baseStyleDefinitions.d.ts +3 -0
- package/dist/styling/baseStyleDefinitions.d.ts.map +1 -1
- package/dist/styling/styleRegistry.d.ts.map +1 -1
- package/dist/styling/theme.d.ts +27 -0
- package/dist/styling/theme.d.ts.map +1 -0
- package/package.json +13 -5
- package/styles/structural.css +916 -0
- package/themes/README.md +84 -30
- package/themes/java/theme.css +140 -0
- package/themes/minimal/theme.css +128 -0
- package/themes/shiny/theme.css +314 -0
- package/dist/jsx-dev-runtime-CarwHDyL.js.map +0 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ Fray is an experimental, browser-only component and DOM runtime built around
|
|
|
4
4
|
Glue emitters. It targets modern evergreen browsers. Its `0.x` API may change
|
|
5
5
|
with documented migration notes.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Install the published alpha together with its Glue peer:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
10
|
pnpm add @sylwellsoftware/glue @sylwellsoftware/fray
|
|
@@ -15,10 +15,68 @@ Chromium, Firefox, and Safari at candidate time. Its reproducible test matrix
|
|
|
15
15
|
uses Playwright's pinned Chromium, Firefox, and WebKit builds. Repository
|
|
16
16
|
tooling requires Node 22+ and pnpm 10; Fray's runtime itself is browser-only.
|
|
17
17
|
|
|
18
|
+
## Design model
|
|
19
|
+
|
|
20
|
+
Fray is the presentation half of a deliberately two-layer architecture:
|
|
21
|
+
|
|
22
|
+
```text
|
|
23
|
+
consumer application
|
|
24
|
+
domain policy, composition, endpoints, active theme/color
|
|
25
|
+
│
|
|
26
|
+
▼
|
|
27
|
+
Fray
|
|
28
|
+
TSX/h(), components, DOM, events, lifecycle, structural CSS
|
|
29
|
+
│ get / subscribe / set
|
|
30
|
+
▼
|
|
31
|
+
Glue
|
|
32
|
+
mutable and derived values, live queries, status, causality
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
The libraries share a protocol, not a monolithic application framework. Glue
|
|
36
|
+
remains usable without a UI; Fray does not introduce hooks, a hidden component
|
|
37
|
+
state store, a query language, or transport policy to compete with Glue.
|
|
38
|
+
|
|
39
|
+
Fray follows these design rules:
|
|
40
|
+
|
|
41
|
+
- **Declarative structure, ordinary TypeScript logic.** TSX or `h()` describes
|
|
42
|
+
the current DOM. Normal methods and event handlers express algorithms and
|
|
43
|
+
commands.
|
|
44
|
+
- **Small components compose into larger widgets.** A table, for example, is
|
|
45
|
+
assembled from headers, cells, filtering, selection, loading, and error
|
|
46
|
+
pieces instead of becoming one opaque primitive.
|
|
47
|
+
- **Use the browser.** Native elements and semantics are preferred for inputs,
|
|
48
|
+
buttons, labels, tables, progress, dialogs, and landmarks. Fray's custom host
|
|
49
|
+
names are light-DOM ownership/styling hooks, not registered Web Components.
|
|
50
|
+
- **One reactive model.** Shared or composable state lives in Glue emitters;
|
|
51
|
+
derived values replace manually mirrored state; live data lives in
|
|
52
|
+
`LiveQuery`. Short-lived presentation details may remain explicit component
|
|
53
|
+
fields when no other object must observe them.
|
|
54
|
+
- **Explicit ownership and cleanup.** Components own the child components,
|
|
55
|
+
subscriptions, listeners, emitters, and queries they create, and release
|
|
56
|
+
them with their lifecycle.
|
|
57
|
+
- **Stable browser state during updates.** The synchronous keyed patcher
|
|
58
|
+
preserves compatible DOM nodes, focus, selection, input state, and event
|
|
59
|
+
listener cardinality while reconciling a component's new vnode tree.
|
|
60
|
+
- **Progressive tooling.** JSX and generated structural CSS are build-time
|
|
61
|
+
conveniences over the same small runtime contracts; they are not separate
|
|
62
|
+
execution models.
|
|
63
|
+
|
|
64
|
+
Responsibility stays at the narrowest layer that understands it:
|
|
65
|
+
|
|
66
|
+
| Concern | Owner |
|
|
67
|
+
| --- | --- |
|
|
68
|
+
| Domain state, endpoint configuration, page composition, theme availability and selection policy | Application |
|
|
69
|
+
| DOM structure, native events, accessibility, component lifetime, visual async states | Fray components |
|
|
70
|
+
| Mutable/computed values, query timing/results, fetch state, optional causality | Glue |
|
|
71
|
+
| URL/wire serialization and retrieval mechanism | Injected Glue query handler/application adapter |
|
|
72
|
+
| Layout/flow CSS and stable component/part hooks | Fray structural styling |
|
|
73
|
+
| Look-and-feel treatment and palette | Separately loaded Fray-compatible theme/color CSS |
|
|
74
|
+
|
|
18
75
|
## Set up a browser application
|
|
19
76
|
|
|
20
|
-
Fray ships ESM, TypeScript declarations, automatic/classic JSX runtimes,
|
|
21
|
-
|
|
77
|
+
Fray ships ESM, TypeScript declarations, automatic/classic JSX runtimes, one
|
|
78
|
+
generated structural stylesheet, replaceable theme treatments, and replaceable
|
|
79
|
+
color palettes. Glue is a peer dependency.
|
|
22
80
|
|
|
23
81
|
```ts
|
|
24
82
|
import {Emitter} from '@sylwellsoftware/glue'
|
|
@@ -32,7 +90,9 @@ import {
|
|
|
32
90
|
createFrayRuntime,
|
|
33
91
|
h,
|
|
34
92
|
} from '@sylwellsoftware/fray'
|
|
35
|
-
import '@sylwellsoftware/fray/
|
|
93
|
+
import '@sylwellsoftware/fray/styles/structural.css'
|
|
94
|
+
import '@sylwellsoftware/fray/colors/iceblue/colors.css'
|
|
95
|
+
import '@sylwellsoftware/fray/themes/minimal/theme.css'
|
|
36
96
|
|
|
37
97
|
const name = new Emitter('Ada')
|
|
38
98
|
|
|
@@ -48,7 +108,6 @@ class App extends Component {
|
|
|
48
108
|
}
|
|
49
109
|
|
|
50
110
|
const runtime = createFrayRuntime()
|
|
51
|
-
runtime.registerStyles(App).injectStyles(document)
|
|
52
111
|
runtime.mount(runtime.create(App), document.querySelector('#app')!)
|
|
53
112
|
|
|
54
113
|
function save(value: string) {
|
|
@@ -56,9 +115,10 @@ function save(value: string) {
|
|
|
56
115
|
}
|
|
57
116
|
```
|
|
58
117
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
118
|
+
The prebuilt structural file targets Fray's default `fray-` hosts. Applications
|
|
119
|
+
with custom components or configured host names may instead register their root
|
|
120
|
+
dependencies and call `runtime.injectStyles(document)`; collection remains
|
|
121
|
+
idempotent and produces one application-scoped structural style element.
|
|
62
122
|
|
|
63
123
|
For automatic JSX, configure TypeScript with `"jsx": "react-jsx"` and
|
|
64
124
|
`"jsxImportSource": "@sylwellsoftware/fray"`. Classic JSX uses `h` as `jsxFactory` and
|
|
@@ -333,6 +393,50 @@ prop would make it impossible for controls such as `Textbox` and application
|
|
|
333
393
|
components such as `Preview` to receive a stable emitter. Use `live()` only
|
|
334
394
|
when the receiver expects a scalar prop and one-way updates are desired.
|
|
335
395
|
|
|
396
|
+
## Glue integration and ownership
|
|
397
|
+
|
|
398
|
+
The smallest Fray/Glue seam is a current value plus subscription:
|
|
399
|
+
|
|
400
|
+
```text
|
|
401
|
+
readable: get() + subscribe(listener)
|
|
402
|
+
writable: readable contract + set(next)
|
|
403
|
+
```
|
|
404
|
+
|
|
405
|
+
Choose the integration mechanism according to what should update:
|
|
406
|
+
|
|
407
|
+
- render an emitter as a child or use `live(emitter)` for fine-grained scalar
|
|
408
|
+
DOM/component updates;
|
|
409
|
+
- use `this.read(emitter)` when the component's structure depends on its value;
|
|
410
|
+
- use `this.snapshot(emitter)` when loading/error state affects the structure;
|
|
411
|
+
- pass the emitter object as a normal prop when a child control owns the
|
|
412
|
+
interaction;
|
|
413
|
+
- use callbacks for one-way commands and emitters for values that must be read,
|
|
414
|
+
composed, or observed elsewhere.
|
|
415
|
+
|
|
416
|
+
A data-aware component normally watches the downstream value it renders rather
|
|
417
|
+
than every upstream input. Leaf controls write ordinary emitters; a coordinator
|
|
418
|
+
owns any semantic `DerivedEmitter`; a data owner constructs or receives the
|
|
419
|
+
`LiveQuery`; the injected handler alone owns transport serialization.
|
|
420
|
+
|
|
421
|
+
```text
|
|
422
|
+
control event ──► Emitter ──► DerivedEmitter ──► LiveQuery
|
|
423
|
+
│ │ │
|
|
424
|
+
└──────────────┴────────────────┘
|
|
425
|
+
Fray view
|
|
426
|
+
```
|
|
427
|
+
|
|
428
|
+
Construction itself is side-effect-free with respect to DOM mounting.
|
|
429
|
+
`initialize()` establishes component subscriptions, mounting creates/attaches
|
|
430
|
+
the rendered tree, updates reconcile it, and `destroy()` releases renderer and
|
|
431
|
+
component-owned resources. State created by a component should be disposed in
|
|
432
|
+
`onDestroy()` as shown above. State supplied through props remains owned by the
|
|
433
|
+
caller unless an API explicitly says otherwise.
|
|
434
|
+
|
|
435
|
+
For asynchronous views, keep the widget's semantic structure present whenever
|
|
436
|
+
practical and render initial loading, refresh-with-previous-data, empty, error,
|
|
437
|
+
and ready states explicitly. Glue owns the query state transition; Fray owns
|
|
438
|
+
how that state is presented.
|
|
439
|
+
|
|
336
440
|
## State convention
|
|
337
441
|
|
|
338
442
|
Every stateful control follows one ownership rule:
|
|
@@ -368,6 +472,8 @@ sibling-local `key` through the common component props.
|
|
|
368
472
|
| `SplitView` | `primary`, `secondary`, `direction`, `primarySize`, pane labels | None | Stateless, non-resizable two-pane layout with explicit overflow ownership. |
|
|
369
473
|
| `DescriptionList` / `DescriptionItem` | list `label`; item `term`, `value` or children | None | Native `dl`/`dt`/`dd` record summary with responsive term/value wrapping. |
|
|
370
474
|
| `ProgressBar` | `label`, `value` or `valueEmitter`, `max`, `valueText` | None | Labelled native progress; a null value is indeterminate. |
|
|
475
|
+
| `ThemePicker` | `label` or `ariaLabel`, theme `options`, value props, `targetDocument`, `disabled` | `onChange(value, option, event)` | String `valueEmitter`; replaces only the theme stylesheet link. |
|
|
476
|
+
| `ColorPicker` | `label` or `ariaLabel`, color `options`, value props, `targetDocument`, `disabled` | `onChange(value, option, event)` | String `valueEmitter`; replaces only the color stylesheet link. |
|
|
371
477
|
| `Tab` | `id`, `label`, `disabled`, `children` | None | Declarative content marker consumed by `TabPanel`; not rendered as a tab by itself. |
|
|
372
478
|
| `TabLine` | `tabs`, `label`, `baseId`, value props | `onChange(id, event)` | Active-tab `valueEmitter`; arrow keys skip disabled tabs, with Home/End support. |
|
|
373
479
|
| `TabPanel` | `tabs` or `Tab` children, `label`, `id`, value props | `onChange(id, event)` | Owns or consumes the active-tab emitter and wires the selected tab to its tabpanel. |
|
|
@@ -493,9 +599,138 @@ content and IDs.
|
|
|
493
599
|
|
|
494
600
|
## Styling and accessibility
|
|
495
601
|
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
602
|
+
Fray's styling system has three physically and conceptually separate layers:
|
|
603
|
+
|
|
604
|
+
| Layer | Shipped path | Responsibility | Runtime behavior |
|
|
605
|
+
| --- | --- | --- | --- |
|
|
606
|
+
| Structure | `styles/structural.css` | Generated component layout, flow, sizing, positioning, accessibility mechanics, stable hooks, and variable consumption | Loaded once; remains stable during presentation changes |
|
|
607
|
+
| Theme | `themes/<name>/theme.css` | Typography, spacing, geometry, depth, surface treatment, semantic family mappings, and exceptional pseudo/native rendering | Loaded separately and independently replaceable |
|
|
608
|
+
| Colors | `colors/<name>/colors.css` | Palette primitives and semantic color roles | Loaded separately and independently replaceable |
|
|
609
|
+
|
|
610
|
+
Component authors place only structure and mechanics in `static css`: display,
|
|
611
|
+
flow, sizing, positioning, overflow, stable state hooks, and consumption of
|
|
612
|
+
semantic variables. Reusable `static baseStyles` mappings apply named
|
|
613
|
+
structural rules to component selectors, while `static dependencies` let the
|
|
614
|
+
collector traverse a complete application tree, deduplicate definitions, and
|
|
615
|
+
generate one artifact. Literal palettes and treatment-specific shadows,
|
|
616
|
+
gradients, radii, and decoration do not belong in component CSS.
|
|
617
|
+
|
|
618
|
+
The initial supported treatments are `shiny`, `java`, and `minimal`. The color
|
|
619
|
+
catalog contains `iceblue`, `ocean`, `green`, `gray`, `orange`, `purple`, `red`,
|
|
620
|
+
and `yellow`. The older top-level `themes/light.css` and `themes/dark.css`
|
|
621
|
+
remain compatibility bundles; new applications should use the separated
|
|
622
|
+
contract.
|
|
623
|
+
|
|
624
|
+
These three treatments adapt the useful intent of earlier styling experiments
|
|
625
|
+
rather than preserving their CSS literally. Application-specific selectors,
|
|
626
|
+
duplicated declarations, and mixed structural/presentation rules were removed;
|
|
627
|
+
the characteristic restrained Minimal, classic raised Java, and layered glossy
|
|
628
|
+
Shiny treatments were rebuilt on the current component hooks and variables.
|
|
629
|
+
|
|
630
|
+
### Hierarchical custom properties
|
|
631
|
+
|
|
632
|
+
CSS custom properties are Fray's primary theme integration protocol:
|
|
633
|
+
|
|
634
|
+
```text
|
|
635
|
+
colors.css
|
|
636
|
+
--fray-color-* palette/semantic roles
|
|
637
|
+
│
|
|
638
|
+
▼
|
|
639
|
+
theme.css
|
|
640
|
+
global UI roles (font, spacing, shape, surface)
|
|
641
|
+
│
|
|
642
|
+
▼
|
|
643
|
+
generic families (header, button, input, panel, selection)
|
|
644
|
+
│
|
|
645
|
+
▼
|
|
646
|
+
optional variants (table header, tab button, toggle button,
|
|
647
|
+
dropdown trigger, dialog header)
|
|
648
|
+
│
|
|
649
|
+
▼
|
|
650
|
+
structural CSS and custom components
|
|
651
|
+
```
|
|
652
|
+
|
|
653
|
+
Components request the narrowest useful variable and explicitly fall back
|
|
654
|
+
toward its generic family. A theme can therefore change all header-like or
|
|
655
|
+
button-like elements with a few assignments, then override only the variants
|
|
656
|
+
that should look different. `frayThemeVariableCatalog` exports this contract in
|
|
657
|
+
machine-readable form, including every variable's layer, family, value kind,
|
|
658
|
+
purpose, and optional fallback.
|
|
659
|
+
|
|
660
|
+
A custom component should consume the same hierarchy rather than forcing every
|
|
661
|
+
theme to learn a new selector:
|
|
662
|
+
|
|
663
|
+
```css
|
|
664
|
+
acme-grid > header {
|
|
665
|
+
color: var(
|
|
666
|
+
--acme-grid-header-color,
|
|
667
|
+
var(--fray-table-header-color, var(--fray-header-color))
|
|
668
|
+
);
|
|
669
|
+
background: var(
|
|
670
|
+
--acme-grid-header-background,
|
|
671
|
+
var(--fray-table-header-background, var(--fray-header-background))
|
|
672
|
+
);
|
|
673
|
+
}
|
|
674
|
+
```
|
|
675
|
+
|
|
676
|
+
That component immediately follows compatible Fray themes while retaining a
|
|
677
|
+
consumer/component-specific escape hatch.
|
|
678
|
+
|
|
679
|
+
Variables are preferred, not mandatory. Some visual treatments require actual
|
|
680
|
+
selectors and pseudo-elements. Shiny uses theme-scoped stable
|
|
681
|
+
`data-fray-component`, `data-part`, role, and ARIA-state hooks to layer
|
|
682
|
+
highlights over headers and button-like controls, draw custom dropdown arrows
|
|
683
|
+
and checkbox surfaces, and style native progress pseudo-parts. These rules must
|
|
684
|
+
not depend on application classes or generated IDs, must never intercept
|
|
685
|
+
pointer events, and must yield to native representation under forced colors.
|
|
686
|
+
|
|
687
|
+
### Runtime selection
|
|
688
|
+
|
|
689
|
+
`replaceFrayStylesheet` maintains one
|
|
690
|
+
`link[data-fray-stylesheet="theme"]` and one
|
|
691
|
+
`link[data-fray-stylesheet="colors"]`. Replacing either link also sets the
|
|
692
|
+
corresponding `data-fray-theme` or `data-fray-color` root attribute. The
|
|
693
|
+
`ThemePicker` and `ColorPicker` controls expose the same operation through the
|
|
694
|
+
normal Fray value-control contract.
|
|
695
|
+
|
|
696
|
+
The default option catalogs resolve URLs against Fray's published package
|
|
697
|
+
layout for direct ESM/CDN use. A bundled application should ask its bundler to
|
|
698
|
+
emit each selectable CSS file as an asset and supply those resulting URLs:
|
|
699
|
+
|
|
700
|
+
```tsx
|
|
701
|
+
import {ColorPicker, Component, ThemePicker} from '@sylwellsoftware/fray'
|
|
702
|
+
import iceblueHref from '@sylwellsoftware/fray/colors/iceblue/colors.css?url'
|
|
703
|
+
import purpleHref from '@sylwellsoftware/fray/colors/purple/colors.css?url'
|
|
704
|
+
import minimalHref from '@sylwellsoftware/fray/themes/minimal/theme.css?url'
|
|
705
|
+
import shinyHref from '@sylwellsoftware/fray/themes/shiny/theme.css?url'
|
|
706
|
+
|
|
707
|
+
const themes = [
|
|
708
|
+
{value: 'shiny', label: 'Shiny', href: shinyHref},
|
|
709
|
+
{value: 'minimal', label: 'Minimal', href: minimalHref},
|
|
710
|
+
]
|
|
711
|
+
const colors = [
|
|
712
|
+
{value: 'iceblue', label: 'Ice blue', href: iceblueHref},
|
|
713
|
+
{value: 'purple', label: 'Purple', href: purpleHref},
|
|
714
|
+
]
|
|
715
|
+
|
|
716
|
+
class AppearanceControls extends Component {
|
|
717
|
+
render() {
|
|
718
|
+
return <aside aria-label="Appearance">
|
|
719
|
+
<ThemePicker label="Theme" options={themes} defaultValue="shiny" />
|
|
720
|
+
<ColorPicker label="Colors" options={colors} defaultValue="iceblue" />
|
|
721
|
+
</aside>
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
static dependencies = [ColorPicker, ThemePicker]
|
|
725
|
+
}
|
|
726
|
+
```
|
|
727
|
+
|
|
728
|
+
The `?url` syntax above is supported by Vite; use the equivalent emitted-asset
|
|
729
|
+
mechanism for another bundler. The structural stylesheet is not replaced.
|
|
730
|
+
|
|
731
|
+
See [`themes/README.md`](themes/README.md) for the complete architecture and
|
|
732
|
+
variable families, and [`colors/README.md`](colors/README.md) for the palette
|
|
733
|
+
contract.
|
|
499
734
|
|
|
500
735
|
Stable examples are tested with axe in Chromium, Firefox, and WebKit and have
|
|
501
736
|
no serious or critical automated violations. Browser tests also cover keyboard
|
package/colors/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Fray color palettes
|
|
2
|
+
|
|
3
|
+
Each `<name>/colors.css` file defines the complete `--fray-color-*` contract
|
|
4
|
+
without defining component geometry or treatment. It can therefore be replaced
|
|
5
|
+
without rebuilding Fray components or replacing the active theme stylesheet.
|
|
6
|
+
|
|
7
|
+
Palette files must provide canvas and surface colors, primary and muted text,
|
|
8
|
+
ordinary and strong borders, primary/hover/active/soft accents, focus and
|
|
9
|
+
selection colors, disabled colors, success/error roles, and highlight/shadow
|
|
10
|
+
tints. The required list is available programmatically from
|
|
11
|
+
`frayThemeVariableCatalog` entries whose `layer` is `color`.
|
|
12
|
+
|
|
13
|
+
Palette names describe a color direction, not a theme. A theme may constrain
|
|
14
|
+
which palettes it advertises, but the CSS contract itself keeps the two assets
|
|
15
|
+
independently replaceable.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
@charset "utf-8";
|
|
2
|
+
|
|
3
|
+
:where(:root), [data-fray-color="gray"] {
|
|
4
|
+
--fray-color-canvas: #f5f6f7;
|
|
5
|
+
--fray-color-surface: #ffffff;
|
|
6
|
+
--fray-color-surface-muted: #eceff1;
|
|
7
|
+
--fray-color-surface-raised: #ffffff;
|
|
8
|
+
--fray-color-surface-inset: #dde1e4;
|
|
9
|
+
--fray-color-text: #25292d;
|
|
10
|
+
--fray-color-text-muted: #626a72;
|
|
11
|
+
--fray-color-border: #c3c8cd;
|
|
12
|
+
--fray-color-border-strong: #858d95;
|
|
13
|
+
--fray-color-primary: #5d6873;
|
|
14
|
+
--fray-color-primary-hover: #4d5862;
|
|
15
|
+
--fray-color-primary-active: #3d464e;
|
|
16
|
+
--fray-color-primary-soft: #e1e6eb;
|
|
17
|
+
--fray-color-on-primary: #ffffff;
|
|
18
|
+
--fray-color-focus: #1769aa;
|
|
19
|
+
--fray-color-selection: #5d6873;
|
|
20
|
+
--fray-color-on-selection: #ffffff;
|
|
21
|
+
--fray-color-disabled: #e4e7e9;
|
|
22
|
+
--fray-color-on-disabled: #6c737a;
|
|
23
|
+
--fray-color-error: #b3261e;
|
|
24
|
+
--fray-color-on-error: #ffffff;
|
|
25
|
+
--fray-color-success: #287a3c;
|
|
26
|
+
--fray-color-on-success: #ffffff;
|
|
27
|
+
--fray-color-highlight: #ffffff;
|
|
28
|
+
--fray-color-shadow: #20252a;
|
|
29
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
@charset "utf-8";
|
|
2
|
+
|
|
3
|
+
:where(:root), [data-fray-color="green"] {
|
|
4
|
+
--fray-color-canvas: #f4faf4;
|
|
5
|
+
--fray-color-surface: #ffffff;
|
|
6
|
+
--fray-color-surface-muted: #e6f3e7;
|
|
7
|
+
--fray-color-surface-raised: #ffffff;
|
|
8
|
+
--fray-color-surface-inset: #d2e7d4;
|
|
9
|
+
--fray-color-text: #18301d;
|
|
10
|
+
--fray-color-text-muted: #536b57;
|
|
11
|
+
--fray-color-border: #b4ccb8;
|
|
12
|
+
--fray-color-border-strong: #75947a;
|
|
13
|
+
--fray-color-primary: #287a3c;
|
|
14
|
+
--fray-color-primary-hover: #206b33;
|
|
15
|
+
--fray-color-primary-active: #185529;
|
|
16
|
+
--fray-color-primary-soft: #d5f0da;
|
|
17
|
+
--fray-color-on-primary: #ffffff;
|
|
18
|
+
--fray-color-focus: #19883a;
|
|
19
|
+
--fray-color-selection: #287a3c;
|
|
20
|
+
--fray-color-on-selection: #ffffff;
|
|
21
|
+
--fray-color-disabled: #e0e9e1;
|
|
22
|
+
--fray-color-on-disabled: #657968;
|
|
23
|
+
--fray-color-error: #b3261e;
|
|
24
|
+
--fray-color-on-error: #ffffff;
|
|
25
|
+
--fray-color-success: #287a3c;
|
|
26
|
+
--fray-color-on-success: #ffffff;
|
|
27
|
+
--fray-color-highlight: #ffffff;
|
|
28
|
+
--fray-color-shadow: #15321b;
|
|
29
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
@charset "utf-8";
|
|
2
|
+
|
|
3
|
+
:where(:root), [data-fray-color="iceblue"] {
|
|
4
|
+
--fray-color-canvas: #f4f8fc;
|
|
5
|
+
--fray-color-surface: #ffffff;
|
|
6
|
+
--fray-color-surface-muted: #eaf2f9;
|
|
7
|
+
--fray-color-surface-raised: #ffffff;
|
|
8
|
+
--fray-color-surface-inset: #d9e7f3;
|
|
9
|
+
--fray-color-text: #162536;
|
|
10
|
+
--fray-color-text-muted: #53687c;
|
|
11
|
+
--fray-color-border: #b8c9d9;
|
|
12
|
+
--fray-color-border-strong: #7892aa;
|
|
13
|
+
--fray-color-primary: #1769aa;
|
|
14
|
+
--fray-color-primary-hover: #0f5b96;
|
|
15
|
+
--fray-color-primary-active: #0a4778;
|
|
16
|
+
--fray-color-primary-soft: #d7ebfb;
|
|
17
|
+
--fray-color-on-primary: #ffffff;
|
|
18
|
+
--fray-color-focus: #1683d8;
|
|
19
|
+
--fray-color-selection: #1769aa;
|
|
20
|
+
--fray-color-on-selection: #ffffff;
|
|
21
|
+
--fray-color-disabled: #e2e9ef;
|
|
22
|
+
--fray-color-on-disabled: #697a89;
|
|
23
|
+
--fray-color-error: #b3261e;
|
|
24
|
+
--fray-color-on-error: #ffffff;
|
|
25
|
+
--fray-color-success: #287a3c;
|
|
26
|
+
--fray-color-on-success: #ffffff;
|
|
27
|
+
--fray-color-highlight: #ffffff;
|
|
28
|
+
--fray-color-shadow: #11283d;
|
|
29
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
@charset "utf-8";
|
|
2
|
+
|
|
3
|
+
:where(:root), [data-fray-color="ocean"] {
|
|
4
|
+
--fray-color-canvas: #f1f9f8;
|
|
5
|
+
--fray-color-surface: #ffffff;
|
|
6
|
+
--fray-color-surface-muted: #e1f2f0;
|
|
7
|
+
--fray-color-surface-raised: #ffffff;
|
|
8
|
+
--fray-color-surface-inset: #cbe5e2;
|
|
9
|
+
--fray-color-text: #12302f;
|
|
10
|
+
--fray-color-text-muted: #4e6b69;
|
|
11
|
+
--fray-color-border: #a9c9c5;
|
|
12
|
+
--fray-color-border-strong: #668f8a;
|
|
13
|
+
--fray-color-primary: #087f78;
|
|
14
|
+
--fray-color-primary-hover: #006f69;
|
|
15
|
+
--fray-color-primary-active: #005a55;
|
|
16
|
+
--fray-color-primary-soft: #c8efeb;
|
|
17
|
+
--fray-color-on-primary: #ffffff;
|
|
18
|
+
--fray-color-focus: #008f86;
|
|
19
|
+
--fray-color-selection: #087f78;
|
|
20
|
+
--fray-color-on-selection: #ffffff;
|
|
21
|
+
--fray-color-disabled: #dde9e7;
|
|
22
|
+
--fray-color-on-disabled: #637976;
|
|
23
|
+
--fray-color-error: #b3261e;
|
|
24
|
+
--fray-color-on-error: #ffffff;
|
|
25
|
+
--fray-color-success: #287a3c;
|
|
26
|
+
--fray-color-on-success: #ffffff;
|
|
27
|
+
--fray-color-highlight: #ffffff;
|
|
28
|
+
--fray-color-shadow: #0b302d;
|
|
29
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
@charset "utf-8";
|
|
2
|
+
|
|
3
|
+
:where(:root), [data-fray-color="orange"] {
|
|
4
|
+
--fray-color-canvas: #fcf7f2;
|
|
5
|
+
--fray-color-surface: #ffffff;
|
|
6
|
+
--fray-color-surface-muted: #f8ebdf;
|
|
7
|
+
--fray-color-surface-raised: #ffffff;
|
|
8
|
+
--fray-color-surface-inset: #edd8c5;
|
|
9
|
+
--fray-color-text: #382417;
|
|
10
|
+
--fray-color-text-muted: #725b49;
|
|
11
|
+
--fray-color-border: #d8bda5;
|
|
12
|
+
--fray-color-border-strong: #a87a56;
|
|
13
|
+
--fray-color-primary: #a94b00;
|
|
14
|
+
--fray-color-primary-hover: #963f00;
|
|
15
|
+
--fray-color-primary-active: #773200;
|
|
16
|
+
--fray-color-primary-soft: #f8dfc8;
|
|
17
|
+
--fray-color-on-primary: #ffffff;
|
|
18
|
+
--fray-color-focus: #c45800;
|
|
19
|
+
--fray-color-selection: #a94b00;
|
|
20
|
+
--fray-color-on-selection: #ffffff;
|
|
21
|
+
--fray-color-disabled: #eee4dc;
|
|
22
|
+
--fray-color-on-disabled: #786a5f;
|
|
23
|
+
--fray-color-error: #a51f18;
|
|
24
|
+
--fray-color-on-error: #ffffff;
|
|
25
|
+
--fray-color-success: #287a3c;
|
|
26
|
+
--fray-color-on-success: #ffffff;
|
|
27
|
+
--fray-color-highlight: #ffffff;
|
|
28
|
+
--fray-color-shadow: #3a1c08;
|
|
29
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
@charset "utf-8";
|
|
2
|
+
|
|
3
|
+
:where(:root), [data-fray-color="purple"] {
|
|
4
|
+
--fray-color-canvas: #faf6fc;
|
|
5
|
+
--fray-color-surface: #ffffff;
|
|
6
|
+
--fray-color-surface-muted: #f1e7f6;
|
|
7
|
+
--fray-color-surface-raised: #ffffff;
|
|
8
|
+
--fray-color-surface-inset: #e4d4ec;
|
|
9
|
+
--fray-color-text: #302039;
|
|
10
|
+
--fray-color-text-muted: #695773;
|
|
11
|
+
--fray-color-border: #cdb8d8;
|
|
12
|
+
--fray-color-border-strong: #9273a2;
|
|
13
|
+
--fray-color-primary: #7137a8;
|
|
14
|
+
--fray-color-primary-hover: #602c92;
|
|
15
|
+
--fray-color-primary-active: #4c2374;
|
|
16
|
+
--fray-color-primary-soft: #ead8f7;
|
|
17
|
+
--fray-color-on-primary: #ffffff;
|
|
18
|
+
--fray-color-focus: #8241bd;
|
|
19
|
+
--fray-color-selection: #7137a8;
|
|
20
|
+
--fray-color-on-selection: #ffffff;
|
|
21
|
+
--fray-color-disabled: #e9e1ed;
|
|
22
|
+
--fray-color-on-disabled: #74697a;
|
|
23
|
+
--fray-color-error: #b3261e;
|
|
24
|
+
--fray-color-on-error: #ffffff;
|
|
25
|
+
--fray-color-success: #287a3c;
|
|
26
|
+
--fray-color-on-success: #ffffff;
|
|
27
|
+
--fray-color-highlight: #ffffff;
|
|
28
|
+
--fray-color-shadow: #2d1639;
|
|
29
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
@charset "utf-8";
|
|
2
|
+
|
|
3
|
+
:where(:root), [data-fray-color="red"] {
|
|
4
|
+
--fray-color-canvas: #fcf6f5;
|
|
5
|
+
--fray-color-surface: #ffffff;
|
|
6
|
+
--fray-color-surface-muted: #f7e7e5;
|
|
7
|
+
--fray-color-surface-raised: #ffffff;
|
|
8
|
+
--fray-color-surface-inset: #ecd3d0;
|
|
9
|
+
--fray-color-text: #38201e;
|
|
10
|
+
--fray-color-text-muted: #735653;
|
|
11
|
+
--fray-color-border: #dab6b2;
|
|
12
|
+
--fray-color-border-strong: #a87570;
|
|
13
|
+
--fray-color-primary: #b3261e;
|
|
14
|
+
--fray-color-primary-hover: #9d1f19;
|
|
15
|
+
--fray-color-primary-active: #7d1814;
|
|
16
|
+
--fray-color-primary-soft: #f8d8d5;
|
|
17
|
+
--fray-color-on-primary: #ffffff;
|
|
18
|
+
--fray-color-focus: #c92e24;
|
|
19
|
+
--fray-color-selection: #b3261e;
|
|
20
|
+
--fray-color-on-selection: #ffffff;
|
|
21
|
+
--fray-color-disabled: #eee1df;
|
|
22
|
+
--fray-color-on-disabled: #796866;
|
|
23
|
+
--fray-color-error: #9d1f19;
|
|
24
|
+
--fray-color-on-error: #ffffff;
|
|
25
|
+
--fray-color-success: #287a3c;
|
|
26
|
+
--fray-color-on-success: #ffffff;
|
|
27
|
+
--fray-color-highlight: #ffffff;
|
|
28
|
+
--fray-color-shadow: #3a1512;
|
|
29
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
@charset "utf-8";
|
|
2
|
+
|
|
3
|
+
:where(:root), [data-fray-color="yellow"] {
|
|
4
|
+
--fray-color-canvas: #fcfaf2;
|
|
5
|
+
--fray-color-surface: #ffffff;
|
|
6
|
+
--fray-color-surface-muted: #f7f1d9;
|
|
7
|
+
--fray-color-surface-raised: #ffffff;
|
|
8
|
+
--fray-color-surface-inset: #e9dfba;
|
|
9
|
+
--fray-color-text: #332c16;
|
|
10
|
+
--fray-color-text-muted: #6d654d;
|
|
11
|
+
--fray-color-border: #d2c695;
|
|
12
|
+
--fray-color-border-strong: #998849;
|
|
13
|
+
--fray-color-primary: #806000;
|
|
14
|
+
--fray-color-primary-hover: #705300;
|
|
15
|
+
--fray-color-primary-active: #594200;
|
|
16
|
+
--fray-color-primary-soft: #f6e9af;
|
|
17
|
+
--fray-color-on-primary: #ffffff;
|
|
18
|
+
--fray-color-focus: #8f6b00;
|
|
19
|
+
--fray-color-selection: #806000;
|
|
20
|
+
--fray-color-on-selection: #ffffff;
|
|
21
|
+
--fray-color-disabled: #ebe6d5;
|
|
22
|
+
--fray-color-on-disabled: #716c5b;
|
|
23
|
+
--fray-color-error: #a51f18;
|
|
24
|
+
--fray-color-on-error: #ffffff;
|
|
25
|
+
--fray-color-success: #287a3c;
|
|
26
|
+
--fray-color-on-success: #ffffff;
|
|
27
|
+
--fray-color-highlight: #ffffff;
|
|
28
|
+
--fray-color-shadow: #352b0c;
|
|
29
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataTable.d.ts","sourceRoot":"","sources":["../../../../src/Components/data/table/DataTable.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"DataTable.d.ts","sourceRoot":"","sources":["../../../../src/Components/data/table/DataTable.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TableHeaderCell.d.ts","sourceRoot":"","sources":["../../../../src/Components/data/table/TableHeaderCell.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAM,MAAM,oBAAoB,CAAA;AACjD,OAAO,KAAK,EAAC,cAAc,EAAE,SAAS,EAAC,MAAM,oBAAoB,CAAA;AACjE,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,uBAAuB,CAAA;AACvD,OAAO,KAAK,EAAC,cAAc,EAAC,MAAM,uCAAuC,CAAA;AACzE,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,6BAA6B,CAAA;AAChE,OAAO,EAAC,WAAW,EAAC,MAAM,kBAAkB,CAAA;AAC5C,OAAO,KAAK,EACR,mBAAmB,EACnB,eAAe,EAElB,MAAM,kBAAkB,CAAA;AACzB,OAAO,KAAK,EAAC,YAAY,EAAE,SAAS,EAAC,MAAM,iBAAiB,CAAA;AAE5D,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;AAE9C,MAAM,WAAW,eAAe;IAC5B,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,aAAa,CAAC,EAAE,mBAAmB,CAAA;CACtC;AAED,MAAM,WAAW,WAAW,CAAC,IAAI,SAAS,QAAQ,GAAG,QAAQ,CAAE,SAAQ,eAAe;IAClF,KAAK,EAAE,OAAO,CAAC,MAAM,IAAI,EAAE,MAAM,CAAC,CAAA;IAClC,MAAM,CAAC,EAAE,CAAC,GAAG,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,KAAK,SAAS,CAAA;CACnD;AAED,MAAM,WAAW,oBAAqB,SAAQ,cAAc,EAAE,eAAe;IACzE,WAAW,EAAE,YAAY,CAAC,SAAS,GAAG,IAAI,CAAC,CAAA;IAC3C,cAAc,EAAE,YAAY,CAAC,YAAY,CAAC,CAAA;IAC1C,WAAW,CAAC,EAAE,SAAS,cAAc,CAAC,eAAe,CAAC,EAAE,CAAA;IACxD,oBAAoB,CAAC,EAAE,eAAe,CAAA;IACtC,cAAc,CAAC,EAAE,CAAC,OAAO,EAAE,YAAY,EAAE,KAAK,EAAE,KAAK,GAAG,IAAI,KAAK,IAAI,CAAA;CACxE;AAED,qBAAa,eAAgB,SAAQ,SAAS,CAAC,oBAAoB,CAAC;IAChE,OAAO,CAAC,aAAa,CAAQ;IAE7B,UAAU,IAAI,IAAI;IAOlB,UAAU,IAAI,IAAI;IAYlB,iBAAiB,CAAC,KAAK,EAAE,UAAU,GAAG,IAAI;IAM1C,aAAa,CAAC,IAAI,EAAE,eAAe,EAAE,KAAK,EAAE,KAAK,GAAG,IAAI,GAAG,IAAI;IAQ/D,MAAM,IAAI,SAAS;IA2DnB,OAAO,CAAC,QAAQ,CAAC,aAAa,CAQ7B;IAED,MAAM,CAAC,YAAY,yBAAgB;IAEnC,MAAM,CAAC,UAAU,0BAIhB;IAED,MAAM,CAAC,GAAG,
|
|
1
|
+
{"version":3,"file":"TableHeaderCell.d.ts","sourceRoot":"","sources":["../../../../src/Components/data/table/TableHeaderCell.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAM,MAAM,oBAAoB,CAAA;AACjD,OAAO,KAAK,EAAC,cAAc,EAAE,SAAS,EAAC,MAAM,oBAAoB,CAAA;AACjE,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,uBAAuB,CAAA;AACvD,OAAO,KAAK,EAAC,cAAc,EAAC,MAAM,uCAAuC,CAAA;AACzE,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,6BAA6B,CAAA;AAChE,OAAO,EAAC,WAAW,EAAC,MAAM,kBAAkB,CAAA;AAC5C,OAAO,KAAK,EACR,mBAAmB,EACnB,eAAe,EAElB,MAAM,kBAAkB,CAAA;AACzB,OAAO,KAAK,EAAC,YAAY,EAAE,SAAS,EAAC,MAAM,iBAAiB,CAAA;AAE5D,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;AAE9C,MAAM,WAAW,eAAe;IAC5B,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,aAAa,CAAC,EAAE,mBAAmB,CAAA;CACtC;AAED,MAAM,WAAW,WAAW,CAAC,IAAI,SAAS,QAAQ,GAAG,QAAQ,CAAE,SAAQ,eAAe;IAClF,KAAK,EAAE,OAAO,CAAC,MAAM,IAAI,EAAE,MAAM,CAAC,CAAA;IAClC,MAAM,CAAC,EAAE,CAAC,GAAG,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,KAAK,SAAS,CAAA;CACnD;AAED,MAAM,WAAW,oBAAqB,SAAQ,cAAc,EAAE,eAAe;IACzE,WAAW,EAAE,YAAY,CAAC,SAAS,GAAG,IAAI,CAAC,CAAA;IAC3C,cAAc,EAAE,YAAY,CAAC,YAAY,CAAC,CAAA;IAC1C,WAAW,CAAC,EAAE,SAAS,cAAc,CAAC,eAAe,CAAC,EAAE,CAAA;IACxD,oBAAoB,CAAC,EAAE,eAAe,CAAA;IACtC,cAAc,CAAC,EAAE,CAAC,OAAO,EAAE,YAAY,EAAE,KAAK,EAAE,KAAK,GAAG,IAAI,KAAK,IAAI,CAAA;CACxE;AAED,qBAAa,eAAgB,SAAQ,SAAS,CAAC,oBAAoB,CAAC;IAChE,OAAO,CAAC,aAAa,CAAQ;IAE7B,UAAU,IAAI,IAAI;IAOlB,UAAU,IAAI,IAAI;IAYlB,iBAAiB,CAAC,KAAK,EAAE,UAAU,GAAG,IAAI;IAM1C,aAAa,CAAC,IAAI,EAAE,eAAe,EAAE,KAAK,EAAE,KAAK,GAAG,IAAI,GAAG,IAAI;IAQ/D,MAAM,IAAI,SAAS;IA2DnB,OAAO,CAAC,QAAQ,CAAC,aAAa,CAQ7B;IAED,MAAM,CAAC,YAAY,yBAAgB;IAEnC,MAAM,CAAC,UAAU,0BAIhB;IAED,MAAM,CAAC,GAAG,SA+BT;CACJ"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dialog.d.ts","sourceRoot":"","sources":["../../../src/Components/dialog/dialog.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAA;AACxC,OAAO,EAAC,SAAS,EAAM,MAAM,iBAAiB,CAAA;AAC9C,OAAO,KAAK,EAAiB,SAAS,EAAE,GAAG,EAAC,MAAM,iBAAiB,CAAA;AAOnE,OAAO,KAAK,EAAC,iBAAiB,EAAE,YAAY,EAAC,MAAM,oBAAoB,CAAA;AAEvE,MAAM,WAAW,WAAY,SAAQ,iBAAiB,CAAC,OAAO,CAAC;IAC3D,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAA;IAC3B,KAAK,EAAE,SAAS,CAAA;IAChB,WAAW,CAAC,EAAE,SAAS,CAAA;IACvB,OAAO,CAAC,EAAE,SAAS,CAAA;IACnB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,eAAe,CAAC,EAAE,GAAG,CAAC,WAAW,CAAC,CAAA;IAClC,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;CACvB;AAED,wEAAwE;AACxE,qBAAa,MAAO,SAAQ,SAAS,CAAC,WAAW,CAAC;IAC9C,QAAQ,CAAC,WAAW,EAAE,YAAY,CAAC,OAAO,CAAC,CAAA;IAC3C,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAA;IACzB,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAA;IACxB,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAA;IAC9B,OAAO,CAAC,aAAa,CAAiC;IACtD,OAAO,CAAC,cAAc,CAA2B;IACjD,OAAO,CAAC,gBAAgB,CAAQ;gBAEpB,KAAK,EAAE,WAAW;IAQ9B,UAAU,IAAI,IAAI;IAIlB,MAAM,IAAI,SAAS;IAmCnB,UAAU,IAAI,IAAI;IAclB,WAAW,IAAI,IAAI;IAInB,KAAK,IAAI,IAAI;IAIb,SAAS,IAAI,IAAI;IAOjB,MAAM,CAAC,YAAY,oBAAW;IAE9B,MAAM,CAAC,GAAG,
|
|
1
|
+
{"version":3,"file":"dialog.d.ts","sourceRoot":"","sources":["../../../src/Components/dialog/dialog.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAA;AACxC,OAAO,EAAC,SAAS,EAAM,MAAM,iBAAiB,CAAA;AAC9C,OAAO,KAAK,EAAiB,SAAS,EAAE,GAAG,EAAC,MAAM,iBAAiB,CAAA;AAOnE,OAAO,KAAK,EAAC,iBAAiB,EAAE,YAAY,EAAC,MAAM,oBAAoB,CAAA;AAEvE,MAAM,WAAW,WAAY,SAAQ,iBAAiB,CAAC,OAAO,CAAC;IAC3D,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAA;IAC3B,KAAK,EAAE,SAAS,CAAA;IAChB,WAAW,CAAC,EAAE,SAAS,CAAA;IACvB,OAAO,CAAC,EAAE,SAAS,CAAA;IACnB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,eAAe,CAAC,EAAE,GAAG,CAAC,WAAW,CAAC,CAAA;IAClC,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;CACvB;AAED,wEAAwE;AACxE,qBAAa,MAAO,SAAQ,SAAS,CAAC,WAAW,CAAC;IAC9C,QAAQ,CAAC,WAAW,EAAE,YAAY,CAAC,OAAO,CAAC,CAAA;IAC3C,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAA;IACzB,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAA;IACxB,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAA;IAC9B,OAAO,CAAC,aAAa,CAAiC;IACtD,OAAO,CAAC,cAAc,CAA2B;IACjD,OAAO,CAAC,gBAAgB,CAAQ;gBAEpB,KAAK,EAAE,WAAW;IAQ9B,UAAU,IAAI,IAAI;IAIlB,MAAM,IAAI,SAAS;IAmCnB,UAAU,IAAI,IAAI;IAclB,WAAW,IAAI,IAAI;IAInB,KAAK,IAAI,IAAI;IAIb,SAAS,IAAI,IAAI;IAOjB,MAAM,CAAC,YAAY,oBAAW;IAE9B,MAAM,CAAC,GAAG,SAoET;IAED,OAAO,CAAC,YAAY;IAKpB,OAAO,CAAC,aAAa;IAmBrB,OAAO,CAAC,WAAW;CAQtB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"panel.d.ts","sourceRoot":"","sources":["../../../src/Components/layout/panel.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAM,MAAM,iBAAiB,CAAA;AAC9C,OAAO,KAAK,EAAC,cAAc,EAAE,SAAS,EAAC,MAAM,iBAAiB,CAAA;AAG9D,MAAM,WAAW,UAAW,SAAQ,cAAc;IAC9C,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAA;IAC3B,MAAM,CAAC,EAAE,SAAS,CAAA;IAClB,OAAO,CAAC,EAAE,SAAS,CAAA;IACnB,WAAW,CAAC,EAAE,YAAY,GAAG,UAAU,CAAA;IACvC,QAAQ,CAAC,EAAE,OAAO,CAAA;CACrB;AAED,qBAAa,KAAM,SAAQ,SAAS,CAAC,UAAU,CAAC;IAC5C,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAA;IACxB,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAA;gBAEb,KAAK,GAAE,UAAe;IAMlC,MAAM;IAoCN,OAAgB,QAAQ,SAAU;IAClC,OAAgB,kBAAkB,SAAiB;IAEnD,MAAM,CAAC,UAAU,0BAGhB;IAED,MAAM,CAAC,GAAG,
|
|
1
|
+
{"version":3,"file":"panel.d.ts","sourceRoot":"","sources":["../../../src/Components/layout/panel.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAM,MAAM,iBAAiB,CAAA;AAC9C,OAAO,KAAK,EAAC,cAAc,EAAE,SAAS,EAAC,MAAM,iBAAiB,CAAA;AAG9D,MAAM,WAAW,UAAW,SAAQ,cAAc;IAC9C,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAA;IAC3B,MAAM,CAAC,EAAE,SAAS,CAAA;IAClB,OAAO,CAAC,EAAE,SAAS,CAAA;IACnB,WAAW,CAAC,EAAE,YAAY,GAAG,UAAU,CAAA;IACvC,QAAQ,CAAC,EAAE,OAAO,CAAA;CACrB;AAED,qBAAa,KAAM,SAAQ,SAAS,CAAC,UAAU,CAAC;IAC5C,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAA;IACxB,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAA;gBAEb,KAAK,GAAE,UAAe;IAMlC,MAAM;IAoCN,OAAgB,QAAQ,SAAU;IAClC,OAAgB,kBAAkB,SAAiB;IAEnD,MAAM,CAAC,UAAU,0BAGhB;IAED,MAAM,CAAC,GAAG,SAyCT;CACJ"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tabline.d.ts","sourceRoot":"","sources":["../../../../src/Components/layout/tabpanel/tabline.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAM,MAAM,oBAAoB,CAAA;AACjD,OAAO,KAAK,EAAiB,SAAS,EAAE,GAAG,EAAC,MAAM,oBAAoB,CAAA;AAMtE,OAAO,KAAK,EAAC,iBAAiB,EAAE,YAAY,EAAC,MAAM,uBAAuB,CAAA;AAE1E,MAAM,WAAW,UAAU;IACvB,EAAE,EAAE,GAAG,CAAA;IACP,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACrB;AAED,MAAM,WAAW,YAAa,SAAQ,iBAAiB,CAAC,GAAG,GAAG,IAAI,CAAC;IAC/D,IAAI,CAAC,EAAE,SAAS,UAAU,EAAE,CAAA;IAC5B,gBAAgB,CAAC,EAAE,YAAY,CAAC,GAAG,GAAG,IAAI,CAAC,CAAA;IAC3C,kBAAkB,CAAC,EAAE,GAAG,GAAG,IAAI,CAAA;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,GAAG,IAAI,KAAK,IAAI,CAAA;CACvD;AAED,qBAAa,OAAQ,SAAQ,SAAS,CAAC,YAAY,CAAC;IAChD,QAAQ,CAAC,YAAY,EAAE,YAAY,CAAC,GAAG,GAAG,IAAI,CAAC,CAAA;IAC/C,QAAQ,CAAC,gBAAgB,EAAE,YAAY,CAAC,GAAG,GAAG,IAAI,CAAC,CAAA;gBAEvC,KAAK,GAAE,YAAiB;IAoBpC,UAAU,IAAI,IAAI;IAIlB,SAAS,CAAC,GAAG,EAAE,UAAU,GAAG,SAAS,EAAE,KAAK,GAAE,KAAK,GAAG,IAAW,GAAG,IAAI;IAMxE,MAAM,IAAI,SAAS;IA2BnB,aAAa,CAAC,KAAK,EAAE,aAAa,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,SAAS,UAAU,EAAE,GAAG,IAAI;IAyBrF,OAAgB,QAAQ,SAAa;IACrC,OAAgB,kBAAkB,SAAa;IAE/C,MAAM,CAAC,UAAU,0BAEhB;IAED,MAAM,CAAC,GAAG,
|
|
1
|
+
{"version":3,"file":"tabline.d.ts","sourceRoot":"","sources":["../../../../src/Components/layout/tabpanel/tabline.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAM,MAAM,oBAAoB,CAAA;AACjD,OAAO,KAAK,EAAiB,SAAS,EAAE,GAAG,EAAC,MAAM,oBAAoB,CAAA;AAMtE,OAAO,KAAK,EAAC,iBAAiB,EAAE,YAAY,EAAC,MAAM,uBAAuB,CAAA;AAE1E,MAAM,WAAW,UAAU;IACvB,EAAE,EAAE,GAAG,CAAA;IACP,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACrB;AAED,MAAM,WAAW,YAAa,SAAQ,iBAAiB,CAAC,GAAG,GAAG,IAAI,CAAC;IAC/D,IAAI,CAAC,EAAE,SAAS,UAAU,EAAE,CAAA;IAC5B,gBAAgB,CAAC,EAAE,YAAY,CAAC,GAAG,GAAG,IAAI,CAAC,CAAA;IAC3C,kBAAkB,CAAC,EAAE,GAAG,GAAG,IAAI,CAAA;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,GAAG,IAAI,KAAK,IAAI,CAAA;CACvD;AAED,qBAAa,OAAQ,SAAQ,SAAS,CAAC,YAAY,CAAC;IAChD,QAAQ,CAAC,YAAY,EAAE,YAAY,CAAC,GAAG,GAAG,IAAI,CAAC,CAAA;IAC/C,QAAQ,CAAC,gBAAgB,EAAE,YAAY,CAAC,GAAG,GAAG,IAAI,CAAC,CAAA;gBAEvC,KAAK,GAAE,YAAiB;IAoBpC,UAAU,IAAI,IAAI;IAIlB,SAAS,CAAC,GAAG,EAAE,UAAU,GAAG,SAAS,EAAE,KAAK,GAAE,KAAK,GAAG,IAAW,GAAG,IAAI;IAMxE,MAAM,IAAI,SAAS;IA2BnB,aAAa,CAAC,KAAK,EAAE,aAAa,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,SAAS,UAAU,EAAE,GAAG,IAAI;IAyBrF,OAAgB,QAAQ,SAAa;IACrC,OAAgB,kBAAkB,SAAa;IAE/C,MAAM,CAAC,UAAU,0BAEhB;IAED,MAAM,CAAC,GAAG,SAmBT;CACJ;AAED,wBAAgB,WAAW,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,GAAG,MAAM,CAE3D;AAED,wBAAgB,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,GAAG,MAAM,CAE1D"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../../../src/Components/lineinputs/checkbox/Checkbox.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAM,MAAM,oBAAoB,CAAA;AACjD,OAAO,KAAK,EAAiB,SAAS,EAAC,MAAM,oBAAoB,CAAA;AAOjE,OAAO,KAAK,EAAC,iBAAiB,EAAE,YAAY,EAAC,MAAM,uBAAuB,CAAA;AAE1E,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,6BAA6B,CAAA;AAEhE,MAAM,MAAM,aAAa,GAAG,MAAM,GAAG,MAAM,CAAA;AAC3C,MAAM,MAAM,cAAc,CAAC,MAAM,SAAS,aAAa,GAAG,eAAe,IAAI,SAAS;IAClF,MAAM,EAAE,SAAS;IACjB,KAAK,EAAE,MAAM;CAChB,CAAA;AAED,MAAM,WAAW,aAAa,CAAC,MAAM,SAAS,aAAa,GAAG,eAAe,CACzE,SAAQ,iBAAiB,CAAC,MAAM,CAAC;IACjC,OAAO,CAAC,EAAE,SAAS,cAAc,CAAC,MAAM,CAAC,EAAE,CAAA;IAC3C,oBAAoB,CAAC,EAAE,MAAM,CAAA;IAC7B,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,GAAG,IAAI,KAAK,IAAI,CAAA;CAC1D;AAED,+CAA+C;AAC/C,qBAAa,QAAQ,CAAC,MAAM,SAAS,aAAa,GAAG,eAAe,CAChE,SAAQ,SAAS,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;IACxC,MAAM,CAAC,OAAO,EAAE,SAAS,cAAc,CAAC,eAAe,CAAC,EAAE,CAGzD;IACD,MAAM,CAAC,oBAAoB,MAAqB;IAEhD,QAAQ,CAAC,OAAO,EAAE,SAAS,cAAc,CAAC,MAAM,CAAC,EAAE,CAAA;IACnD,QAAQ,CAAC,YAAY,EAAE,YAAY,CAAC,MAAM,CAAC,CAAA;IAC3C,QAAQ,CAAC,oBAAoB,EAAE,YAAY,CAAC,MAAM,CAAC,CAAA;gBAEvC,KAAK,GAAE,aAAa,CAAC,MAAM,CAAM;IAqB7C,UAAU,IAAI,IAAI;IAIlB,UAAU,CAAC,SAAS,SAAI,EAAE,KAAK,GAAE,KAAK,GAAG,IAAW,GAAG,IAAI;IAW3D,MAAM,IAAI,SAAS;IAiDnB,OAAgB,QAAQ,SAAa;IACrC,OAAgB,kBAAkB,SAAc;IAEhD,MAAM,CAAC,UAAU,0BAIhB;IAED,MAAM,CAAC,GAAG,
|
|
1
|
+
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../../../src/Components/lineinputs/checkbox/Checkbox.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAM,MAAM,oBAAoB,CAAA;AACjD,OAAO,KAAK,EAAiB,SAAS,EAAC,MAAM,oBAAoB,CAAA;AAOjE,OAAO,KAAK,EAAC,iBAAiB,EAAE,YAAY,EAAC,MAAM,uBAAuB,CAAA;AAE1E,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,6BAA6B,CAAA;AAEhE,MAAM,MAAM,aAAa,GAAG,MAAM,GAAG,MAAM,CAAA;AAC3C,MAAM,MAAM,cAAc,CAAC,MAAM,SAAS,aAAa,GAAG,eAAe,IAAI,SAAS;IAClF,MAAM,EAAE,SAAS;IACjB,KAAK,EAAE,MAAM;CAChB,CAAA;AAED,MAAM,WAAW,aAAa,CAAC,MAAM,SAAS,aAAa,GAAG,eAAe,CACzE,SAAQ,iBAAiB,CAAC,MAAM,CAAC;IACjC,OAAO,CAAC,EAAE,SAAS,cAAc,CAAC,MAAM,CAAC,EAAE,CAAA;IAC3C,oBAAoB,CAAC,EAAE,MAAM,CAAA;IAC7B,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,GAAG,IAAI,KAAK,IAAI,CAAA;CAC1D;AAED,+CAA+C;AAC/C,qBAAa,QAAQ,CAAC,MAAM,SAAS,aAAa,GAAG,eAAe,CAChE,SAAQ,SAAS,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;IACxC,MAAM,CAAC,OAAO,EAAE,SAAS,cAAc,CAAC,eAAe,CAAC,EAAE,CAGzD;IACD,MAAM,CAAC,oBAAoB,MAAqB;IAEhD,QAAQ,CAAC,OAAO,EAAE,SAAS,cAAc,CAAC,MAAM,CAAC,EAAE,CAAA;IACnD,QAAQ,CAAC,YAAY,EAAE,YAAY,CAAC,MAAM,CAAC,CAAA;IAC3C,QAAQ,CAAC,oBAAoB,EAAE,YAAY,CAAC,MAAM,CAAC,CAAA;gBAEvC,KAAK,GAAE,aAAa,CAAC,MAAM,CAAM;IAqB7C,UAAU,IAAI,IAAI;IAIlB,UAAU,CAAC,SAAS,SAAI,EAAE,KAAK,GAAE,KAAK,GAAG,IAAW,GAAG,IAAI;IAW3D,MAAM,IAAI,SAAS;IAiDnB,OAAgB,QAAQ,SAAa;IACrC,OAAgB,kBAAkB,SAAc;IAEhD,MAAM,CAAC,UAAU,0BAIhB;IAED,MAAM,CAAC,GAAG,SA2BT;CACJ"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toggle.d.ts","sourceRoot":"","sources":["../../../src/Components/lineinputs/toggle.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAM,MAAM,iBAAiB,CAAA;AAC9C,OAAO,KAAK,EAAC,SAAS,EAAE,GAAG,EAAC,MAAM,iBAAiB,CAAA;AAQnD,OAAO,KAAK,EAAC,iBAAiB,EAAE,YAAY,EAAC,MAAM,oBAAoB,CAAA;AAEvE,MAAM,MAAM,YAAY,CAAC,MAAM,SAAS,GAAG,GAAG,MAAM,IAAI,SAAS;IAC7D,KAAK,EAAE,MAAM;IACb,KAAK,EAAE,SAAS;CACnB,CAAA;AAED,MAAM,WAAW,WAAW,CAAC,MAAM,SAAS,GAAG,GAAG,MAAM,CACpD,SAAQ,iBAAiB,CAAC,MAAM,CAAC;IACjC,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAA;IAC3B,OAAO,CAAC,EAAE,SAAS,YAAY,CAAC,MAAM,CAAC,EAAE,CAAA;IACzC,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,GAAG,IAAI,KAAK,IAAI,CAAA;CAC1D;AAED,kEAAkE;AAClE,qBAAa,MAAM,CAAC,MAAM,SAAS,GAAG,GAAG,MAAM,CAAE,SAAQ,SAAS,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;IACnF,QAAQ,CAAC,YAAY,EAAE,YAAY,CAAC,MAAM,CAAC,CAAA;IAC3C,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAA;IACxB,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAA;gBAEb,KAAK,GAAE,WAAW,CAAC,MAAM,CAAM;IAiB3C,UAAU,IAAI,IAAI;IAIlB,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,GAAE,KAAK,GAAG,IAAW,GAAG,IAAI;IAM7D,MAAM,IAAI,SAAS;IA4CnB,aAAa,CACT,KAAK,EAAE,aAAa,EACpB,KAAK,EAAE,MAAM,EACb,OAAO,EAAE,SAAS,YAAY,CAAC,MAAM,CAAC,EAAE,GACzC,IAAI;IAoBP,MAAM,CAAC,UAAU,0BAGhB;IAED,MAAM,CAAC,GAAG,
|
|
1
|
+
{"version":3,"file":"toggle.d.ts","sourceRoot":"","sources":["../../../src/Components/lineinputs/toggle.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAM,MAAM,iBAAiB,CAAA;AAC9C,OAAO,KAAK,EAAC,SAAS,EAAE,GAAG,EAAC,MAAM,iBAAiB,CAAA;AAQnD,OAAO,KAAK,EAAC,iBAAiB,EAAE,YAAY,EAAC,MAAM,oBAAoB,CAAA;AAEvE,MAAM,MAAM,YAAY,CAAC,MAAM,SAAS,GAAG,GAAG,MAAM,IAAI,SAAS;IAC7D,KAAK,EAAE,MAAM;IACb,KAAK,EAAE,SAAS;CACnB,CAAA;AAED,MAAM,WAAW,WAAW,CAAC,MAAM,SAAS,GAAG,GAAG,MAAM,CACpD,SAAQ,iBAAiB,CAAC,MAAM,CAAC;IACjC,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAA;IAC3B,OAAO,CAAC,EAAE,SAAS,YAAY,CAAC,MAAM,CAAC,EAAE,CAAA;IACzC,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,GAAG,IAAI,KAAK,IAAI,CAAA;CAC1D;AAED,kEAAkE;AAClE,qBAAa,MAAM,CAAC,MAAM,SAAS,GAAG,GAAG,MAAM,CAAE,SAAQ,SAAS,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;IACnF,QAAQ,CAAC,YAAY,EAAE,YAAY,CAAC,MAAM,CAAC,CAAA;IAC3C,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAA;IACxB,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAA;gBAEb,KAAK,GAAE,WAAW,CAAC,MAAM,CAAM;IAiB3C,UAAU,IAAI,IAAI;IAIlB,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,GAAE,KAAK,GAAG,IAAW,GAAG,IAAI;IAM7D,MAAM,IAAI,SAAS;IA4CnB,aAAa,CACT,KAAK,EAAE,aAAa,EACpB,KAAK,EAAE,MAAM,EACb,OAAO,EAAE,SAAS,YAAY,CAAC,MAAM,CAAC,EAAE,GACzC,IAAI;IAoBP,MAAM,CAAC,UAAU,0BAGhB;IAED,MAAM,CAAC,GAAG,SAgCT;CACJ"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"progressBar.d.ts","sourceRoot":"","sources":["../../../src/Components/status/progressBar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,uBAAuB,CAAA;AAE1D,OAAO,EAAC,SAAS,EAAM,MAAM,iBAAiB,CAAA;AAC9C,OAAO,KAAK,EAAC,cAAc,EAAE,SAAS,EAAC,MAAM,iBAAiB,CAAA;AAG9D,MAAM,WAAW,gBAAiB,SAAQ,cAAc;IACpD,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAA;IAC3B,KAAK,EAAE,SAAS,CAAA;IAChB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACrB,YAAY,CAAC,EAAE,eAAe,CAAC,MAAM,GAAG,IAAI,EAAE,OAAO,CAAC,CAAA;IACtD,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,SAAS,CAAC,EAAE,MAAM,CAAA;CACrB;AAED,mFAAmF;AACnF,qBAAa,WAAY,SAAQ,SAAS,CAAC,gBAAgB,CAAC;IACxD,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAA;gBAEf,KAAK,EAAE,gBAAgB;IAQnC,MAAM,IAAI,SAAS;IA8BnB,OAAgB,QAAQ,SAAiB;IACzC,OAAgB,kBAAkB,SAAiB;IAEnD,MAAM,CAAC,GAAG,
|
|
1
|
+
{"version":3,"file":"progressBar.d.ts","sourceRoot":"","sources":["../../../src/Components/status/progressBar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,uBAAuB,CAAA;AAE1D,OAAO,EAAC,SAAS,EAAM,MAAM,iBAAiB,CAAA;AAC9C,OAAO,KAAK,EAAC,cAAc,EAAE,SAAS,EAAC,MAAM,iBAAiB,CAAA;AAG9D,MAAM,WAAW,gBAAiB,SAAQ,cAAc;IACpD,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAA;IAC3B,KAAK,EAAE,SAAS,CAAA;IAChB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACrB,YAAY,CAAC,EAAE,eAAe,CAAC,MAAM,GAAG,IAAI,EAAE,OAAO,CAAC,CAAA;IACtD,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,SAAS,CAAC,EAAE,MAAM,CAAA;CACrB;AAED,mFAAmF;AACnF,qBAAa,WAAY,SAAQ,SAAS,CAAC,gBAAgB,CAAC;IACxD,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAA;gBAEf,KAAK,EAAE,gBAAgB;IAQnC,MAAM,IAAI,SAAS;IA8BnB,OAAgB,QAAQ,SAAiB;IACzC,OAAgB,kBAAkB,SAAiB;IAEnD,MAAM,CAAC,GAAG,SA6BT;CACJ"}
|