diff --git a/packages/bootstrap-components/.gitignore b/packages/bootstrap-components/.gitignore
deleted file mode 100644
index 2986122cff..0000000000
--- a/packages/bootstrap-components/.gitignore
+++ /dev/null
@@ -1,5 +0,0 @@
-.DS_Store
-node_modules
-yarn.lock
-package-lock.json
-dist/index.js
diff --git a/packages/bootstrap-components/README.md b/packages/bootstrap-components/README.md
deleted file mode 100644
index 71e531fc9d..0000000000
--- a/packages/bootstrap-components/README.md
+++ /dev/null
@@ -1,33 +0,0 @@
-*Psst — looking for an app template? Go here --> [sveltejs/template](https://github.com/sveltejs/template)*
-
----
-
-# component-template
-
-A base for building shareable Svelte components. Clone it with [degit](https://github.com/Rich-Harris/degit):
-
-```bash
-npx degit sveltejs/component-template my-new-component
-cd my-new-component
-npm install # or yarn
-```
-
-Your component's source code lives in `src/index.html`.
-
-TODO
-
-* [ ] some firm opinions about the best way to test components
-* [ ] update `degit` so that it automates some of the setup work
-
-
-## Setting up
-
-* Run `npm init` (or `yarn init`)
-* Replace this README with your own
-
-
-## Consuming components
-
-Your package.json has a `"svelte"` field pointing to `src/index.html`, which allows Svelte apps to import the source code directly, if they are using a bundler plugin like [rollup-plugin-svelte](https://github.com/rollup/rollup-plugin-svelte) or [svelte-loader](https://github.com/sveltejs/svelte-loader) (where [`resolve.mainFields`](https://webpack.js.org/configuration/resolve/#resolve-mainfields) in your webpack config includes `"svelte"`). **This is recommended.**
-
-For everyone else, `npm run build` will bundle your component's source code into a plain JavaScript module (`index.mjs`) and a UMD script (`index.js`). This will happen automatically when you publish your component to npm, courtesy of the `prepublishOnly` hook in package.json.
diff --git a/packages/bootstrap-components/components.json b/packages/bootstrap-components/components.json
deleted file mode 100644
index 70d4668213..0000000000
--- a/packages/bootstrap-components/components.json
+++ /dev/null
@@ -1,47 +0,0 @@
-{
- "_lib": "./dist/index.js",
- "form" : {
- "importPath": "Form",
- "name": "Form",
- "description": "A form - allgned fields with labels",
- "props" : {
- "containerClass": "string",
- "formControls": {
- "type":"array",
- "elementDefinition": {
- "label": "string",
- "control":"component",
- "controlPosition": {
- "type":"options",
- "options": ["Before Label","After Label"],
- "default": "After Label"
- }
- }
- }
- },
- "tags": ["form"]
- },
- "nav": {
- "importPath": "Nav",
- "name": "Nav",
- "description": "A nav - a side bar of buttons that control the currently active component",
- "props" : {
- "items": {
- "type": "array",
- "elementDefinition" : {
- "title": "string",
- "component": "component"
- }
- },
- "selectedItem":"string",
- "pills":"bool",
- "orientation":{"type":"options", "options": ["horizontal", "vertical"]},
- "alignment":{"type":"options", "options": ["start", "center", "end"]},
- "fill":"bool",
- "hideNavBar":"bool",
- "className": "string"
-
- },
- "tags": ["nav", "navigation", "sidebar"]
- }
-}
\ No newline at end of file
diff --git a/packages/bootstrap-components/dist/index.js.map b/packages/bootstrap-components/dist/index.js.map
deleted file mode 100644
index eb9dac7595..0000000000
--- a/packages/bootstrap-components/dist/index.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"index.js","sources":["../node_modules/svelte/internal/index.js","../src/Button.svelte","../src/Textbox.svelte","../src/Form.svelte","../src/api.js","../src/Login.svelte","../src/buildStyle.js","../src/Grid.svelte","../src/StackPanel.svelte"],"sourcesContent":["function noop() { }\nconst identity = x => x;\nfunction assign(tar, src) {\n // @ts-ignore\n for (const k in src)\n tar[k] = src[k];\n return tar;\n}\nfunction is_promise(value) {\n return value && typeof value === 'object' && typeof value.then === 'function';\n}\nfunction add_location(element, file, line, column, char) {\n element.__svelte_meta = {\n loc: { file, line, column, char }\n };\n}\nfunction run(fn) {\n return fn();\n}\nfunction blank_object() {\n return Object.create(null);\n}\nfunction run_all(fns) {\n fns.forEach(run);\n}\nfunction is_function(thing) {\n return typeof thing === 'function';\n}\nfunction safe_not_equal(a, b) {\n return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function');\n}\nfunction not_equal(a, b) {\n return a != a ? b == b : a !== b;\n}\nfunction validate_store(store, name) {\n if (!store || typeof store.subscribe !== 'function') {\n throw new Error(`'${name}' is not a store with a 'subscribe' method`);\n }\n}\nfunction subscribe(store, callback) {\n const unsub = store.subscribe(callback);\n return unsub.unsubscribe ? () => unsub.unsubscribe() : unsub;\n}\nfunction get_store_value(store) {\n let value;\n subscribe(store, _ => value = _)();\n return value;\n}\nfunction component_subscribe(component, store, callback) {\n component.$$.on_destroy.push(subscribe(store, callback));\n}\nfunction create_slot(definition, ctx, fn) {\n if (definition) {\n const slot_ctx = get_slot_context(definition, ctx, fn);\n return definition[0](slot_ctx);\n }\n}\nfunction get_slot_context(definition, ctx, fn) {\n return definition[1]\n ? assign({}, assign(ctx.$$scope.ctx, definition[1](fn ? fn(ctx) : {})))\n : ctx.$$scope.ctx;\n}\nfunction get_slot_changes(definition, ctx, changed, fn) {\n return definition[1]\n ? assign({}, assign(ctx.$$scope.changed || {}, definition[1](fn ? fn(changed) : {})))\n : ctx.$$scope.changed || {};\n}\nfunction exclude_internal_props(props) {\n const result = {};\n for (const k in props)\n if (k[0] !== '$')\n result[k] = props[k];\n return result;\n}\nfunction once(fn) {\n let ran = false;\n return function (...args) {\n if (ran)\n return;\n ran = true;\n fn.call(this, ...args);\n };\n}\nfunction null_to_empty(value) {\n return value == null ? '' : value;\n}\nfunction set_store_value(store, ret, value = ret) {\n store.set(value);\n return ret;\n}\n\nconst is_client = typeof window !== 'undefined';\nlet now = is_client\n ? () => window.performance.now()\n : () => Date.now();\nlet raf = is_client ? cb => requestAnimationFrame(cb) : noop;\n// used internally for testing\nfunction set_now(fn) {\n now = fn;\n}\nfunction set_raf(fn) {\n raf = fn;\n}\n\nconst tasks = new Set();\nlet running = false;\nfunction run_tasks() {\n tasks.forEach(task => {\n if (!task[0](now())) {\n tasks.delete(task);\n task[1]();\n }\n });\n running = tasks.size > 0;\n if (running)\n raf(run_tasks);\n}\nfunction clear_loops() {\n // for testing...\n tasks.forEach(task => tasks.delete(task));\n running = false;\n}\nfunction loop(fn) {\n let task;\n if (!running) {\n running = true;\n raf(run_tasks);\n }\n return {\n promise: new Promise(fulfil => {\n tasks.add(task = [fn, fulfil]);\n }),\n abort() {\n tasks.delete(task);\n }\n };\n}\n\nfunction append(target, node) {\n target.appendChild(node);\n}\nfunction insert(target, node, anchor) {\n target.insertBefore(node, anchor || null);\n}\nfunction detach(node) {\n node.parentNode.removeChild(node);\n}\nfunction destroy_each(iterations, detaching) {\n for (let i = 0; i < iterations.length; i += 1) {\n if (iterations[i])\n iterations[i].d(detaching);\n }\n}\nfunction element(name) {\n return document.createElement(name);\n}\nfunction element_is(name, is) {\n return document.createElement(name, { is });\n}\nfunction object_without_properties(obj, exclude) {\n // eslint-disable-next-line @typescript-eslint/no-object-literal-type-assertion\n const target = {};\n for (const k in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, k)\n // @ts-ignore\n && exclude.indexOf(k) === -1) {\n // @ts-ignore\n target[k] = obj[k];\n }\n }\n return target;\n}\nfunction svg_element(name) {\n return document.createElementNS('http://www.w3.org/2000/svg', name);\n}\nfunction text(data) {\n return document.createTextNode(data);\n}\nfunction space() {\n return text(' ');\n}\nfunction empty() {\n return text('');\n}\nfunction listen(node, event, handler, options) {\n node.addEventListener(event, handler, options);\n return () => node.removeEventListener(event, handler, options);\n}\nfunction prevent_default(fn) {\n return function (event) {\n event.preventDefault();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction stop_propagation(fn) {\n return function (event) {\n event.stopPropagation();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction self(fn) {\n return function (event) {\n // @ts-ignore\n if (event.target === this)\n fn.call(this, event);\n };\n}\nfunction attr(node, attribute, value) {\n if (value == null)\n node.removeAttribute(attribute);\n else\n node.setAttribute(attribute, value);\n}\nfunction set_attributes(node, attributes) {\n for (const key in attributes) {\n if (key === 'style') {\n node.style.cssText = attributes[key];\n }\n else if (key in node) {\n node[key] = attributes[key];\n }\n else {\n attr(node, key, attributes[key]);\n }\n }\n}\nfunction set_svg_attributes(node, attributes) {\n for (const key in attributes) {\n attr(node, key, attributes[key]);\n }\n}\nfunction set_custom_element_data(node, prop, value) {\n if (prop in node) {\n node[prop] = value;\n }\n else {\n attr(node, prop, value);\n }\n}\nfunction xlink_attr(node, attribute, value) {\n node.setAttributeNS('http://www.w3.org/1999/xlink', attribute, value);\n}\nfunction get_binding_group_value(group) {\n const value = [];\n for (let i = 0; i < group.length; i += 1) {\n if (group[i].checked)\n value.push(group[i].__value);\n }\n return value;\n}\nfunction to_number(value) {\n return value === '' ? undefined : +value;\n}\nfunction time_ranges_to_array(ranges) {\n const array = [];\n for (let i = 0; i < ranges.length; i += 1) {\n array.push({ start: ranges.start(i), end: ranges.end(i) });\n }\n return array;\n}\nfunction children(element) {\n return Array.from(element.childNodes);\n}\nfunction claim_element(nodes, name, attributes, svg) {\n for (let i = 0; i < nodes.length; i += 1) {\n const node = nodes[i];\n if (node.nodeName === name) {\n for (let j = 0; j < node.attributes.length; j += 1) {\n const attribute = node.attributes[j];\n if (!attributes[attribute.name])\n node.removeAttribute(attribute.name);\n }\n return nodes.splice(i, 1)[0]; // TODO strip unwanted attributes\n }\n }\n return svg ? svg_element(name) : element(name);\n}\nfunction claim_text(nodes, data) {\n for (let i = 0; i < nodes.length; i += 1) {\n const node = nodes[i];\n if (node.nodeType === 3) {\n node.data = '' + data;\n return nodes.splice(i, 1)[0];\n }\n }\n return text(data);\n}\nfunction claim_space(nodes) {\n return claim_text(nodes, ' ');\n}\nfunction set_data(text, data) {\n data = '' + data;\n if (text.data !== data)\n text.data = data;\n}\nfunction set_input_value(input, value) {\n if (value != null || input.value) {\n input.value = value;\n }\n}\nfunction set_input_type(input, type) {\n try {\n input.type = type;\n }\n catch (e) {\n // do nothing\n }\n}\nfunction set_style(node, key, value, important) {\n node.style.setProperty(key, value, important ? 'important' : '');\n}\nfunction select_option(select, value) {\n for (let i = 0; i < select.options.length; i += 1) {\n const option = select.options[i];\n if (option.__value === value) {\n option.selected = true;\n return;\n }\n }\n}\nfunction select_options(select, value) {\n for (let i = 0; i < select.options.length; i += 1) {\n const option = select.options[i];\n option.selected = ~value.indexOf(option.__value);\n }\n}\nfunction select_value(select) {\n const selected_option = select.querySelector(':checked') || select.options[0];\n return selected_option && selected_option.__value;\n}\nfunction select_multiple_value(select) {\n return [].map.call(select.querySelectorAll(':checked'), option => option.__value);\n}\nfunction add_resize_listener(element, fn) {\n if (getComputedStyle(element).position === 'static') {\n element.style.position = 'relative';\n }\n const object = document.createElement('object');\n object.setAttribute('style', 'display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; overflow: hidden; pointer-events: none; z-index: -1;');\n object.type = 'text/html';\n object.tabIndex = -1;\n let win;\n object.onload = () => {\n win = object.contentDocument.defaultView;\n win.addEventListener('resize', fn);\n };\n if (/Trident/.test(navigator.userAgent)) {\n element.appendChild(object);\n object.data = 'about:blank';\n }\n else {\n object.data = 'about:blank';\n element.appendChild(object);\n }\n return {\n cancel: () => {\n win && win.removeEventListener && win.removeEventListener('resize', fn);\n element.removeChild(object);\n }\n };\n}\nfunction toggle_class(element, name, toggle) {\n element.classList[toggle ? 'add' : 'remove'](name);\n}\nfunction custom_event(type, detail) {\n const e = document.createEvent('CustomEvent');\n e.initCustomEvent(type, false, false, detail);\n return e;\n}\nclass HtmlTag {\n constructor(html, anchor = null) {\n this.e = element('div');\n this.a = anchor;\n this.u(html);\n }\n m(target, anchor = null) {\n for (let i = 0; i < this.n.length; i += 1) {\n insert(target, this.n[i], anchor);\n }\n this.t = target;\n }\n u(html) {\n this.e.innerHTML = html;\n this.n = Array.from(this.e.childNodes);\n }\n p(html) {\n this.d();\n this.u(html);\n this.m(this.t, this.a);\n }\n d() {\n this.n.forEach(detach);\n }\n}\n\nlet stylesheet;\nlet active = 0;\nlet current_rules = {};\n// https://github.com/darkskyapp/string-hash/blob/master/index.js\nfunction hash(str) {\n let hash = 5381;\n let i = str.length;\n while (i--)\n hash = ((hash << 5) - hash) ^ str.charCodeAt(i);\n return hash >>> 0;\n}\nfunction create_rule(node, a, b, duration, delay, ease, fn, uid = 0) {\n const step = 16.666 / duration;\n let keyframes = '{\\n';\n for (let p = 0; p <= 1; p += step) {\n const t = a + (b - a) * ease(p);\n keyframes += p * 100 + `%{${fn(t, 1 - t)}}\\n`;\n }\n const rule = keyframes + `100% {${fn(b, 1 - b)}}\\n}`;\n const name = `__svelte_${hash(rule)}_${uid}`;\n if (!current_rules[name]) {\n if (!stylesheet) {\n const style = element('style');\n document.head.appendChild(style);\n stylesheet = style.sheet;\n }\n current_rules[name] = true;\n stylesheet.insertRule(`@keyframes ${name} ${rule}`, stylesheet.cssRules.length);\n }\n const animation = node.style.animation || '';\n node.style.animation = `${animation ? `${animation}, ` : ``}${name} ${duration}ms linear ${delay}ms 1 both`;\n active += 1;\n return name;\n}\nfunction delete_rule(node, name) {\n node.style.animation = (node.style.animation || '')\n .split(', ')\n .filter(name\n ? anim => anim.indexOf(name) < 0 // remove specific animation\n : anim => anim.indexOf('__svelte') === -1 // remove all Svelte animations\n )\n .join(', ');\n if (name && !--active)\n clear_rules();\n}\nfunction clear_rules() {\n raf(() => {\n if (active)\n return;\n let i = stylesheet.cssRules.length;\n while (i--)\n stylesheet.deleteRule(i);\n current_rules = {};\n });\n}\n\nfunction create_animation(node, from, fn, params) {\n if (!from)\n return noop;\n const to = node.getBoundingClientRect();\n if (from.left === to.left && from.right === to.right && from.top === to.top && from.bottom === to.bottom)\n return noop;\n const { delay = 0, duration = 300, easing = identity, \n // @ts-ignore todo: should this be separated from destructuring? Or start/end added to public api and documentation?\n start: start_time = now() + delay, \n // @ts-ignore todo:\n end = start_time + duration, tick = noop, css } = fn(node, { from, to }, params);\n let running = true;\n let started = false;\n let name;\n function start() {\n if (css) {\n name = create_rule(node, 0, 1, duration, delay, easing, css);\n }\n if (!delay) {\n started = true;\n }\n }\n function stop() {\n if (css)\n delete_rule(node, name);\n running = false;\n }\n loop(now => {\n if (!started && now >= start_time) {\n started = true;\n }\n if (started && now >= end) {\n tick(1, 0);\n stop();\n }\n if (!running) {\n return false;\n }\n if (started) {\n const p = now - start_time;\n const t = 0 + 1 * easing(p / duration);\n tick(t, 1 - t);\n }\n return true;\n });\n start();\n tick(0, 1);\n return stop;\n}\nfunction fix_position(node) {\n const style = getComputedStyle(node);\n if (style.position !== 'absolute' && style.position !== 'fixed') {\n const { width, height } = style;\n const a = node.getBoundingClientRect();\n node.style.position = 'absolute';\n node.style.width = width;\n node.style.height = height;\n add_transform(node, a);\n }\n}\nfunction add_transform(node, a) {\n const b = node.getBoundingClientRect();\n if (a.left !== b.left || a.top !== b.top) {\n const style = getComputedStyle(node);\n const transform = style.transform === 'none' ? '' : style.transform;\n node.style.transform = `${transform} translate(${a.left - b.left}px, ${a.top - b.top}px)`;\n }\n}\n\nlet current_component;\nfunction set_current_component(component) {\n current_component = component;\n}\nfunction get_current_component() {\n if (!current_component)\n throw new Error(`Function called outside component initialization`);\n return current_component;\n}\nfunction beforeUpdate(fn) {\n get_current_component().$$.before_update.push(fn);\n}\nfunction onMount(fn) {\n get_current_component().$$.on_mount.push(fn);\n}\nfunction afterUpdate(fn) {\n get_current_component().$$.after_update.push(fn);\n}\nfunction onDestroy(fn) {\n get_current_component().$$.on_destroy.push(fn);\n}\nfunction createEventDispatcher() {\n const component = current_component;\n return (type, detail) => {\n const callbacks = component.$$.callbacks[type];\n if (callbacks) {\n // TODO are there situations where events could be dispatched\n // in a server (non-DOM) environment?\n const event = custom_event(type, detail);\n callbacks.slice().forEach(fn => {\n fn.call(component, event);\n });\n }\n };\n}\nfunction setContext(key, context) {\n get_current_component().$$.context.set(key, context);\n}\nfunction getContext(key) {\n return get_current_component().$$.context.get(key);\n}\n// TODO figure out if we still want to support\n// shorthand events, or if we want to implement\n// a real bubbling mechanism\nfunction bubble(component, event) {\n const callbacks = component.$$.callbacks[event.type];\n if (callbacks) {\n callbacks.slice().forEach(fn => fn(event));\n }\n}\n\nconst dirty_components = [];\nconst intros = { enabled: false };\nconst binding_callbacks = [];\nconst render_callbacks = [];\nconst flush_callbacks = [];\nconst resolved_promise = Promise.resolve();\nlet update_scheduled = false;\nfunction schedule_update() {\n if (!update_scheduled) {\n update_scheduled = true;\n resolved_promise.then(flush);\n }\n}\nfunction tick() {\n schedule_update();\n return resolved_promise;\n}\nfunction add_render_callback(fn) {\n render_callbacks.push(fn);\n}\nfunction add_flush_callback(fn) {\n flush_callbacks.push(fn);\n}\nfunction flush() {\n const seen_callbacks = new Set();\n do {\n // first, call beforeUpdate functions\n // and update components\n while (dirty_components.length) {\n const component = dirty_components.shift();\n set_current_component(component);\n update(component.$$);\n }\n while (binding_callbacks.length)\n binding_callbacks.pop()();\n // then, once components are updated, call\n // afterUpdate functions. This may cause\n // subsequent updates...\n for (let i = 0; i < render_callbacks.length; i += 1) {\n const callback = render_callbacks[i];\n if (!seen_callbacks.has(callback)) {\n callback();\n // ...so guard against infinite loops\n seen_callbacks.add(callback);\n }\n }\n render_callbacks.length = 0;\n } while (dirty_components.length);\n while (flush_callbacks.length) {\n flush_callbacks.pop()();\n }\n update_scheduled = false;\n}\nfunction update($$) {\n if ($$.fragment) {\n $$.update($$.dirty);\n run_all($$.before_update);\n $$.fragment.p($$.dirty, $$.ctx);\n $$.dirty = null;\n $$.after_update.forEach(add_render_callback);\n }\n}\n\nlet promise;\nfunction wait() {\n if (!promise) {\n promise = Promise.resolve();\n promise.then(() => {\n promise = null;\n });\n }\n return promise;\n}\nfunction dispatch(node, direction, kind) {\n node.dispatchEvent(custom_event(`${direction ? 'intro' : 'outro'}${kind}`));\n}\nconst outroing = new Set();\nlet outros;\nfunction group_outros() {\n outros = {\n r: 0,\n c: [],\n p: outros // parent group\n };\n}\nfunction check_outros() {\n if (!outros.r) {\n run_all(outros.c);\n }\n outros = outros.p;\n}\nfunction transition_in(block, local) {\n if (block && block.i) {\n outroing.delete(block);\n block.i(local);\n }\n}\nfunction transition_out(block, local, detach, callback) {\n if (block && block.o) {\n if (outroing.has(block))\n return;\n outroing.add(block);\n outros.c.push(() => {\n outroing.delete(block);\n if (callback) {\n if (detach)\n block.d(1);\n callback();\n }\n });\n block.o(local);\n }\n}\nconst null_transition = { duration: 0 };\nfunction create_in_transition(node, fn, params) {\n let config = fn(node, params);\n let running = false;\n let animation_name;\n let task;\n let uid = 0;\n function cleanup() {\n if (animation_name)\n delete_rule(node, animation_name);\n }\n function go() {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n if (css)\n animation_name = create_rule(node, 0, 1, duration, delay, easing, css, uid++);\n tick(0, 1);\n const start_time = now() + delay;\n const end_time = start_time + duration;\n if (task)\n task.abort();\n running = true;\n add_render_callback(() => dispatch(node, true, 'start'));\n task = loop(now => {\n if (running) {\n if (now >= end_time) {\n tick(1, 0);\n dispatch(node, true, 'end');\n cleanup();\n return running = false;\n }\n if (now >= start_time) {\n const t = easing((now - start_time) / duration);\n tick(t, 1 - t);\n }\n }\n return running;\n });\n }\n let started = false;\n return {\n start() {\n if (started)\n return;\n delete_rule(node);\n if (is_function(config)) {\n config = config();\n wait().then(go);\n }\n else {\n go();\n }\n },\n invalidate() {\n started = false;\n },\n end() {\n if (running) {\n cleanup();\n running = false;\n }\n }\n };\n}\nfunction create_out_transition(node, fn, params) {\n let config = fn(node, params);\n let running = true;\n let animation_name;\n const group = outros;\n group.r += 1;\n function go() {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n if (css)\n animation_name = create_rule(node, 1, 0, duration, delay, easing, css);\n const start_time = now() + delay;\n const end_time = start_time + duration;\n add_render_callback(() => dispatch(node, false, 'start'));\n loop(now => {\n if (running) {\n if (now >= end_time) {\n tick(0, 1);\n dispatch(node, false, 'end');\n if (!--group.r) {\n // this will result in `end()` being called,\n // so we don't need to clean up here\n run_all(group.c);\n }\n return false;\n }\n if (now >= start_time) {\n const t = easing((now - start_time) / duration);\n tick(1 - t, t);\n }\n }\n return running;\n });\n }\n if (is_function(config)) {\n wait().then(() => {\n // @ts-ignore\n config = config();\n go();\n });\n }\n else {\n go();\n }\n return {\n end(reset) {\n if (reset && config.tick) {\n config.tick(1, 0);\n }\n if (running) {\n if (animation_name)\n delete_rule(node, animation_name);\n running = false;\n }\n }\n };\n}\nfunction create_bidirectional_transition(node, fn, params, intro) {\n let config = fn(node, params);\n let t = intro ? 0 : 1;\n let running_program = null;\n let pending_program = null;\n let animation_name = null;\n function clear_animation() {\n if (animation_name)\n delete_rule(node, animation_name);\n }\n function init(program, duration) {\n const d = program.b - t;\n duration *= Math.abs(d);\n return {\n a: t,\n b: program.b,\n d,\n duration,\n start: program.start,\n end: program.start + duration,\n group: program.group\n };\n }\n function go(b) {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n const program = {\n start: now() + delay,\n b\n };\n if (!b) {\n // @ts-ignore todo: improve typings\n program.group = outros;\n outros.r += 1;\n }\n if (running_program) {\n pending_program = program;\n }\n else {\n // if this is an intro, and there's a delay, we need to do\n // an initial tick and/or apply CSS animation immediately\n if (css) {\n clear_animation();\n animation_name = create_rule(node, t, b, duration, delay, easing, css);\n }\n if (b)\n tick(0, 1);\n running_program = init(program, duration);\n add_render_callback(() => dispatch(node, b, 'start'));\n loop(now => {\n if (pending_program && now > pending_program.start) {\n running_program = init(pending_program, duration);\n pending_program = null;\n dispatch(node, running_program.b, 'start');\n if (css) {\n clear_animation();\n animation_name = create_rule(node, t, running_program.b, running_program.duration, 0, easing, config.css);\n }\n }\n if (running_program) {\n if (now >= running_program.end) {\n tick(t = running_program.b, 1 - t);\n dispatch(node, running_program.b, 'end');\n if (!pending_program) {\n // we're done\n if (running_program.b) {\n // intro — we can tidy up immediately\n clear_animation();\n }\n else {\n // outro — needs to be coordinated\n if (!--running_program.group.r)\n run_all(running_program.group.c);\n }\n }\n running_program = null;\n }\n else if (now >= running_program.start) {\n const p = now - running_program.start;\n t = running_program.a + running_program.d * easing(p / running_program.duration);\n tick(t, 1 - t);\n }\n }\n return !!(running_program || pending_program);\n });\n }\n }\n return {\n run(b) {\n if (is_function(config)) {\n wait().then(() => {\n // @ts-ignore\n config = config();\n go(b);\n });\n }\n else {\n go(b);\n }\n },\n end() {\n clear_animation();\n running_program = pending_program = null;\n }\n };\n}\n\nfunction handle_promise(promise, info) {\n const token = info.token = {};\n function update(type, index, key, value) {\n if (info.token !== token)\n return;\n info.resolved = key && { [key]: value };\n const child_ctx = assign(assign({}, info.ctx), info.resolved);\n const block = type && (info.current = type)(child_ctx);\n if (info.block) {\n if (info.blocks) {\n info.blocks.forEach((block, i) => {\n if (i !== index && block) {\n group_outros();\n transition_out(block, 1, 1, () => {\n info.blocks[i] = null;\n });\n check_outros();\n }\n });\n }\n else {\n info.block.d(1);\n }\n block.c();\n transition_in(block, 1);\n block.m(info.mount(), info.anchor);\n flush();\n }\n info.block = block;\n if (info.blocks)\n info.blocks[index] = block;\n }\n if (is_promise(promise)) {\n const current_component = get_current_component();\n promise.then(value => {\n set_current_component(current_component);\n update(info.then, 1, info.value, value);\n set_current_component(null);\n }, error => {\n set_current_component(current_component);\n update(info.catch, 2, info.error, error);\n set_current_component(null);\n });\n // if we previously had a then/catch block, destroy it\n if (info.current !== info.pending) {\n update(info.pending, 0);\n return true;\n }\n }\n else {\n if (info.current !== info.then) {\n update(info.then, 1, info.value, promise);\n return true;\n }\n info.resolved = { [info.value]: promise };\n }\n}\n\nconst globals = (typeof window !== 'undefined' ? window : global);\n\nfunction destroy_block(block, lookup) {\n block.d(1);\n lookup.delete(block.key);\n}\nfunction outro_and_destroy_block(block, lookup) {\n transition_out(block, 1, 1, () => {\n lookup.delete(block.key);\n });\n}\nfunction fix_and_destroy_block(block, lookup) {\n block.f();\n destroy_block(block, lookup);\n}\nfunction fix_and_outro_and_destroy_block(block, lookup) {\n block.f();\n outro_and_destroy_block(block, lookup);\n}\nfunction update_keyed_each(old_blocks, changed, get_key, dynamic, ctx, list, lookup, node, destroy, create_each_block, next, get_context) {\n let o = old_blocks.length;\n let n = list.length;\n let i = o;\n const old_indexes = {};\n while (i--)\n old_indexes[old_blocks[i].key] = i;\n const new_blocks = [];\n const new_lookup = new Map();\n const deltas = new Map();\n i = n;\n while (i--) {\n const child_ctx = get_context(ctx, list, i);\n const key = get_key(child_ctx);\n let block = lookup.get(key);\n if (!block) {\n block = create_each_block(key, child_ctx);\n block.c();\n }\n else if (dynamic) {\n block.p(changed, child_ctx);\n }\n new_lookup.set(key, new_blocks[i] = block);\n if (key in old_indexes)\n deltas.set(key, Math.abs(i - old_indexes[key]));\n }\n const will_move = new Set();\n const did_move = new Set();\n function insert(block) {\n transition_in(block, 1);\n block.m(node, next);\n lookup.set(block.key, block);\n next = block.first;\n n--;\n }\n while (o && n) {\n const new_block = new_blocks[n - 1];\n const old_block = old_blocks[o - 1];\n const new_key = new_block.key;\n const old_key = old_block.key;\n if (new_block === old_block) {\n // do nothing\n next = new_block.first;\n o--;\n n--;\n }\n else if (!new_lookup.has(old_key)) {\n // remove old block\n destroy(old_block, lookup);\n o--;\n }\n else if (!lookup.has(new_key) || will_move.has(new_key)) {\n insert(new_block);\n }\n else if (did_move.has(old_key)) {\n o--;\n }\n else if (deltas.get(new_key) > deltas.get(old_key)) {\n did_move.add(new_key);\n insert(new_block);\n }\n else {\n will_move.add(old_key);\n o--;\n }\n }\n while (o--) {\n const old_block = old_blocks[o];\n if (!new_lookup.has(old_block.key))\n destroy(old_block, lookup);\n }\n while (n)\n insert(new_blocks[n - 1]);\n return new_blocks;\n}\nfunction measure(blocks) {\n const rects = {};\n let i = blocks.length;\n while (i--)\n rects[blocks[i].key] = blocks[i].node.getBoundingClientRect();\n return rects;\n}\n\nfunction get_spread_update(levels, updates) {\n const update = {};\n const to_null_out = {};\n const accounted_for = { $$scope: 1 };\n let i = levels.length;\n while (i--) {\n const o = levels[i];\n const n = updates[i];\n if (n) {\n for (const key in o) {\n if (!(key in n))\n to_null_out[key] = 1;\n }\n for (const key in n) {\n if (!accounted_for[key]) {\n update[key] = n[key];\n accounted_for[key] = 1;\n }\n }\n levels[i] = n;\n }\n else {\n for (const key in o) {\n accounted_for[key] = 1;\n }\n }\n }\n for (const key in to_null_out) {\n if (!(key in update))\n update[key] = undefined;\n }\n return update;\n}\nfunction get_spread_object(spread_props) {\n return typeof spread_props === 'object' && spread_props !== null ? spread_props : {};\n}\n\nconst invalid_attribute_name_character = /[\\s'\">/=\\u{FDD0}-\\u{FDEF}\\u{FFFE}\\u{FFFF}\\u{1FFFE}\\u{1FFFF}\\u{2FFFE}\\u{2FFFF}\\u{3FFFE}\\u{3FFFF}\\u{4FFFE}\\u{4FFFF}\\u{5FFFE}\\u{5FFFF}\\u{6FFFE}\\u{6FFFF}\\u{7FFFE}\\u{7FFFF}\\u{8FFFE}\\u{8FFFF}\\u{9FFFE}\\u{9FFFF}\\u{AFFFE}\\u{AFFFF}\\u{BFFFE}\\u{BFFFF}\\u{CFFFE}\\u{CFFFF}\\u{DFFFE}\\u{DFFFF}\\u{EFFFE}\\u{EFFFF}\\u{FFFFE}\\u{FFFFF}\\u{10FFFE}\\u{10FFFF}]/u;\n// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n// https://infra.spec.whatwg.org/#noncharacter\nfunction spread(args) {\n const attributes = Object.assign({}, ...args);\n let str = '';\n Object.keys(attributes).forEach(name => {\n if (invalid_attribute_name_character.test(name))\n return;\n const value = attributes[name];\n if (value === undefined)\n return;\n if (value === true)\n str += \" \" + name;\n const escaped = String(value)\n .replace(/\"/g, '"')\n .replace(/'/g, ''');\n str += \" \" + name + \"=\" + JSON.stringify(escaped);\n });\n return str;\n}\nconst escaped = {\n '\"': '"',\n \"'\": ''',\n '&': '&',\n '<': '<',\n '>': '>'\n};\nfunction escape(html) {\n return String(html).replace(/[\"'&<>]/g, match => escaped[match]);\n}\nfunction each(items, fn) {\n let str = '';\n for (let i = 0; i < items.length; i += 1) {\n str += fn(items[i], i);\n }\n return str;\n}\nconst missing_component = {\n $$render: () => ''\n};\nfunction validate_component(component, name) {\n if (!component || !component.$$render) {\n if (name === 'svelte:component')\n name += ' this={...}';\n throw new Error(`<${name}> is not a valid SSR component. You may need to review your build config to ensure that dependencies are compiled, rather than imported as pre-compiled modules`);\n }\n return component;\n}\nfunction debug(file, line, column, values) {\n console.log(`{@debug} ${file ? file + ' ' : ''}(${line}:${column})`); // eslint-disable-line no-console\n console.log(values); // eslint-disable-line no-console\n return '';\n}\nlet on_destroy;\nfunction create_ssr_component(fn) {\n function $$render(result, props, bindings, slots) {\n const parent_component = current_component;\n const $$ = {\n on_destroy,\n context: new Map(parent_component ? parent_component.$$.context : []),\n // these will be immediately discarded\n on_mount: [],\n before_update: [],\n after_update: [],\n callbacks: blank_object()\n };\n set_current_component({ $$ });\n const html = fn(result, props, bindings, slots);\n set_current_component(parent_component);\n return html;\n }\n return {\n render: (props = {}, options = {}) => {\n on_destroy = [];\n const result = { head: '', css: new Set() };\n const html = $$render(result, props, {}, options);\n run_all(on_destroy);\n return {\n html,\n css: {\n code: Array.from(result.css).map(css => css.code).join('\\n'),\n map: null // TODO\n },\n head: result.head\n };\n },\n $$render\n };\n}\nfunction add_attribute(name, value, boolean) {\n if (value == null || (boolean && !value))\n return '';\n return ` ${name}${value === true ? '' : `=${typeof value === 'string' ? JSON.stringify(escape(value)) : `\"${value}\"`}`}`;\n}\nfunction add_classes(classes) {\n return classes ? ` class=\"${classes}\"` : ``;\n}\n\nfunction bind(component, name, callback) {\n if (component.$$.props.indexOf(name) === -1)\n return;\n component.$$.bound[name] = callback;\n callback(component.$$.ctx[name]);\n}\nfunction mount_component(component, target, anchor) {\n const { fragment, on_mount, on_destroy, after_update } = component.$$;\n fragment.m(target, anchor);\n // onMount happens before the initial afterUpdate\n add_render_callback(() => {\n const new_on_destroy = on_mount.map(run).filter(is_function);\n if (on_destroy) {\n on_destroy.push(...new_on_destroy);\n }\n else {\n // Edge case - component was destroyed immediately,\n // most likely as a result of a binding initialising\n run_all(new_on_destroy);\n }\n component.$$.on_mount = [];\n });\n after_update.forEach(add_render_callback);\n}\nfunction destroy_component(component, detaching) {\n if (component.$$.fragment) {\n run_all(component.$$.on_destroy);\n component.$$.fragment.d(detaching);\n // TODO null out other refs, including component.$$ (but need to\n // preserve final state?)\n component.$$.on_destroy = component.$$.fragment = null;\n component.$$.ctx = {};\n }\n}\nfunction make_dirty(component, key) {\n if (!component.$$.dirty) {\n dirty_components.push(component);\n schedule_update();\n component.$$.dirty = blank_object();\n }\n component.$$.dirty[key] = true;\n}\nfunction init(component, options, instance, create_fragment, not_equal, prop_names) {\n const parent_component = current_component;\n set_current_component(component);\n const props = options.props || {};\n const $$ = component.$$ = {\n fragment: null,\n ctx: null,\n // state\n props: prop_names,\n update: noop,\n not_equal,\n bound: blank_object(),\n // lifecycle\n on_mount: [],\n on_destroy: [],\n before_update: [],\n after_update: [],\n context: new Map(parent_component ? parent_component.$$.context : []),\n // everything else\n callbacks: blank_object(),\n dirty: null\n };\n let ready = false;\n $$.ctx = instance\n ? instance(component, props, (key, ret, value = ret) => {\n if ($$.ctx && not_equal($$.ctx[key], $$.ctx[key] = value)) {\n if ($$.bound[key])\n $$.bound[key](value);\n if (ready)\n make_dirty(component, key);\n }\n return ret;\n })\n : props;\n $$.update();\n ready = true;\n run_all($$.before_update);\n $$.fragment = create_fragment($$.ctx);\n if (options.target) {\n if (options.hydrate) {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n $$.fragment.l(children(options.target));\n }\n else {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n $$.fragment.c();\n }\n if (options.intro)\n transition_in(component.$$.fragment);\n mount_component(component, options.target, options.anchor);\n flush();\n }\n set_current_component(parent_component);\n}\nlet SvelteElement;\nif (typeof HTMLElement !== 'undefined') {\n SvelteElement = class extends HTMLElement {\n constructor() {\n super();\n this.attachShadow({ mode: 'open' });\n }\n connectedCallback() {\n // @ts-ignore todo: improve typings\n for (const key in this.$$.slotted) {\n // @ts-ignore todo: improve typings\n this.appendChild(this.$$.slotted[key]);\n }\n }\n attributeChangedCallback(attr, _oldValue, newValue) {\n this[attr] = newValue;\n }\n $destroy() {\n destroy_component(this, 1);\n this.$destroy = noop;\n }\n $on(type, callback) {\n // TODO should this delegate to addEventListener?\n const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));\n callbacks.push(callback);\n return () => {\n const index = callbacks.indexOf(callback);\n if (index !== -1)\n callbacks.splice(index, 1);\n };\n }\n $set() {\n // overridden by instance, if it has props\n }\n };\n}\nclass SvelteComponent {\n $destroy() {\n destroy_component(this, 1);\n this.$destroy = noop;\n }\n $on(type, callback) {\n const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));\n callbacks.push(callback);\n return () => {\n const index = callbacks.indexOf(callback);\n if (index !== -1)\n callbacks.splice(index, 1);\n };\n }\n $set() {\n // overridden by instance, if it has props\n }\n}\n\nfunction dispatch_dev(type, detail) {\n document.dispatchEvent(custom_event(type, detail));\n}\nfunction append_dev(target, node) {\n dispatch_dev(\"SvelteDOMInsert\", { target, node });\n append(target, node);\n}\nfunction insert_dev(target, node, anchor) {\n dispatch_dev(\"SvelteDOMInsert\", { target, node, anchor });\n insert(target, node, anchor);\n}\nfunction detach_dev(node) {\n dispatch_dev(\"SvelteDOMRemove\", { node });\n detach(node);\n}\nfunction detach_between_dev(before, after) {\n while (before.nextSibling && before.nextSibling !== after) {\n detach_dev(before.nextSibling);\n }\n}\nfunction detach_before_dev(after) {\n while (after.previousSibling) {\n detach_dev(after.previousSibling);\n }\n}\nfunction detach_after_dev(before) {\n while (before.nextSibling) {\n detach_dev(before.nextSibling);\n }\n}\nfunction listen_dev(node, event, handler, options, has_prevent_default, has_stop_propagation) {\n const modifiers = options === true ? [\"capture\"] : options ? Array.from(Object.keys(options)) : [];\n if (has_prevent_default)\n modifiers.push('preventDefault');\n if (has_stop_propagation)\n modifiers.push('stopPropagation');\n dispatch_dev(\"SvelteDOMAddEventListener\", { node, event, handler, modifiers });\n const dispose = listen(node, event, handler, options);\n return () => {\n dispatch_dev(\"SvelteDOMRemoveEventListener\", { node, event, handler, modifiers });\n dispose();\n };\n}\nfunction attr_dev(node, attribute, value) {\n attr(node, attribute, value);\n if (value == null)\n dispatch_dev(\"SvelteDOMRemoveAttribute\", { node, attribute });\n else\n dispatch_dev(\"SvelteDOMSetAttribute\", { node, attribute, value });\n}\nfunction prop_dev(node, property, value) {\n node[property] = value;\n dispatch_dev(\"SvelteDOMSetProperty\", { node, property, value });\n}\nfunction dataset_dev(node, property, value) {\n node.dataset[property] = value;\n dispatch_dev(\"SvelteDOMSetDataset\", { node, property, value });\n}\nfunction set_data_dev(text, data) {\n data = '' + data;\n if (text.data === data)\n return;\n dispatch_dev(\"SvelteDOMSetData\", { node: text, data });\n text.data = data;\n}\nclass SvelteComponentDev extends SvelteComponent {\n constructor(options) {\n if (!options || (!options.target && !options.$$inline)) {\n throw new Error(`'target' is a required option`);\n }\n super();\n }\n $destroy() {\n super.$destroy();\n this.$destroy = () => {\n console.warn(`Component was already destroyed`); // eslint-disable-line no-console\n };\n }\n}\n\nexport { HtmlTag, SvelteComponent, SvelteComponentDev, SvelteElement, add_attribute, add_classes, add_flush_callback, add_location, add_render_callback, add_resize_listener, add_transform, afterUpdate, append, append_dev, assign, attr, attr_dev, beforeUpdate, bind, binding_callbacks, blank_object, bubble, check_outros, children, claim_element, claim_space, claim_text, clear_loops, component_subscribe, createEventDispatcher, create_animation, create_bidirectional_transition, create_in_transition, create_out_transition, create_slot, create_ssr_component, current_component, custom_event, dataset_dev, debug, destroy_block, destroy_component, destroy_each, detach, detach_after_dev, detach_before_dev, detach_between_dev, detach_dev, dirty_components, dispatch_dev, each, element, element_is, empty, escape, escaped, exclude_internal_props, fix_and_destroy_block, fix_and_outro_and_destroy_block, fix_position, flush, getContext, get_binding_group_value, get_current_component, get_slot_changes, get_slot_context, get_spread_object, get_spread_update, get_store_value, globals, group_outros, handle_promise, identity, init, insert, insert_dev, intros, invalid_attribute_name_character, is_client, is_function, is_promise, listen, listen_dev, loop, measure, missing_component, mount_component, noop, not_equal, now, null_to_empty, object_without_properties, onDestroy, onMount, once, outro_and_destroy_block, prevent_default, prop_dev, raf, run, run_all, safe_not_equal, schedule_update, select_multiple_value, select_option, select_options, select_value, self, setContext, set_attributes, set_current_component, set_custom_element_data, set_data, set_data_dev, set_input_type, set_input_value, set_now, set_raf, set_store_value, set_style, set_svg_attributes, space, spread, stop_propagation, subscribe, svg_element, text, tick, time_ranges_to_array, to_number, toggle_class, transition_in, transition_out, update_keyed_each, validate_component, validate_store, xlink_attr };\n","\n\n\n\n\n\n","\n\n{#if hideValue}\n\n{:else}\n\n{/if}\n\n","\n\n
\n\n","\r\nconst apiCall = (method) => (url, body) => \r\n fetch(url, {\r\n method: method,\r\n headers: {\r\n 'Content-Type': 'application/json',\r\n },\r\n body: body && JSON.stringify(body), \r\n });\r\n\r\nexport const post = apiCall(\"POST\");\r\nexport const get = apiCall(\"GET\");\r\nexport const patch = apiCall(\"PATCH\");\r\nexport const del = apiCall(\"DELETE\");\r\n\r\nexport const authenticate = (username, password) => post(\"./api/authenticate\", {\r\n username, password\r\n});\r\n\r\nexport default {\r\npost, get, patch, delete:del\r\n};","\n\n\n\n
\n\n {#if logo}\n
\n
\n
\n {/if}\n\n
\n\n
\n \n
\n\n {#if incorrect}\n
\n Incorrect username or password\n
\n {/if}\n\n
\n\n
\n\n","export const buildStyle = (styles) => {\r\n let str = \"\";\r\n for(let s in styles) {\r\n if(styles[s]) {\r\n str += `${s}: ${styles[s]}; `\r\n }\r\n }\r\n return str;\r\n}","\r\n\r\n\r\n {#each children as child, index}\r\n
\r\n
\r\n {/each}\r\n
\r\n\r\n","\n\n\n {#each children as child, index}\n
\n {/each}\n
\n\n"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/packages/bootstrap-components/package.json b/packages/bootstrap-components/package.json
deleted file mode 100644
index 2b34da6e09..0000000000
--- a/packages/bootstrap-components/package.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "name": "@budibase/bootstrap-components",
- "svelte": "src/index.svelte",
- "main": "dist/index.js",
- "module": "dist/index.js",
- "scripts": {
- "build": "rollup -c",
- "prepublishOnly": "npm run build",
- "testbuild": "rollup -w -c rollup.testconfig.js",
- "dev": "run-p start:dev testbuild",
- "start:dev": "sirv public --single --dev",
- "publishdev": "yarn build && node ./scripts/publishDev.js"
- },
- "devDependencies": {
- "@budibase/client": "^0.0.32",
- "fs-extra": "^8.1.0",
- "lodash": "^4.17.15",
- "npm-run-all": "^4.1.5",
- "rollup": "^1.11.0",
- "rollup-plugin-commonjs": "^10.0.2",
- "rollup-plugin-json": "^4.0.0",
- "rollup-plugin-livereload": "^1.0.1",
- "rollup-plugin-node-resolve": "^5.0.0",
- "rollup-plugin-svelte": "^5.0.0",
- "rollup-plugin-terser": "^5.1.1",
- "shortid": "^2.2.15",
- "sirv-cli": "^0.4.4",
- "svelte": "^3.12.1"
- },
- "keywords": [
- "svelte"
- ],
- "version": "0.0.32",
- "license": "MIT",
- "gitHead": "b1f4f90927d9e494e513220ef060af28d2d42455"
-}
diff --git a/packages/bootstrap-components/public/budibase-logo.png b/packages/bootstrap-components/public/budibase-logo.png
deleted file mode 100644
index 1d6fc3d1cc..0000000000
Binary files a/packages/bootstrap-components/public/budibase-logo.png and /dev/null differ
diff --git a/packages/bootstrap-components/public/bundle.css b/packages/bootstrap-components/public/bundle.css
deleted file mode 100644
index 238494fab3..0000000000
--- a/packages/bootstrap-components/public/bundle.css
+++ /dev/null
@@ -1,13 +0,0 @@
-#current_component.svelte-1xqz9vm{height:100%;width:100%}
-.root.svelte-10kw8to{display:grid}
-.root.svelte-crnq0a{height:100%;display:grid;grid-template-columns:[left] 1fr [middle] auto [right] 1fr;grid-template-rows:[top] 1fr [center] auto [bottom] 1fr}.content.svelte-crnq0a{grid-column-start:middle;grid-row-start:center;width:400px}.logo-container.svelte-crnq0a{margin-bottom:20px
-}.logo-container.svelte-crnq0a>img.svelte-crnq0a{max-width:100%}.login-button-container.svelte-crnq0a{text-align:right;margin-top:20px}.incorrect-details-panel.svelte-crnq0a{margin-top:30px;padding:10px;border-style:solid;border-width:1px;border-color:maroon;border-radius:1px;text-align:center;color:maroon;background-color:mistyrose}.form-root.svelte-crnq0a{display:grid;grid-template-columns:[label] auto [control] 1fr}.label.svelte-crnq0a{grid-column-start:label;padding:5px 10px;vertical-align:middle}.control.svelte-crnq0a{grid-column-start:control;padding:5px 10px}.default-input.svelte-crnq0a{font-family:inherit;font-size:inherit;padding:0.4em;margin:0 0 0.5em 0;box-sizing:border-box;border:1px solid #ccc;border-radius:2px;width:100%}.default-button.svelte-crnq0a{font-family:inherit;font-size:inherit;padding:0.4em;margin:0 0 0.5em 0;box-sizing:border-box;border:1px solid #ccc;border-radius:2px;color:#333;background-color:#f4f4f4;outline:none}.default-button.svelte-crnq0a:active{background-color:#ddd}.default-button.svelte-crnq0a:focus{border-color:#666}
-.form-root.svelte-m9d6ue{display:grid;grid-template-columns:[label] auto [control] 1fr}.label.svelte-m9d6ue{grid-column-start:label;padding:5px 10px;vertical-align:middle}.control.svelte-m9d6ue{grid-column-start:control;padding:5px 10px}.overflow.svelte-m9d6ue{grid-column-start:overflow}.full-width.svelte-m9d6ue{width:100%}
-.root.svelte-aihwli{height:100%;width:100%;grid-template-columns:[navbar] auto [content] 1fr;display:grid}.navbar.svelte-aihwli{grid-column:navbar;background:var(--navBarBackground);border:var(--navBarBorder);color:var(--navBarColor)}.navitem.svelte-aihwli{padding:10px 17px;cursor:pointer}.navitem.svelte-aihwli:hover{background:var(--itemHoverBackground);color:var(--itemHoverColor)}.navitem.selected.svelte-aihwli{background:var(--selectedItemBackground);border:var(--selectedItemBorder);color:var(--selectedItemColor)}.content.svelte-aihwli{grid-column:content}
-.default.svelte-1ec4wqj{width:100%;font-family:inherit;font-size:inherit;padding:0.4em;margin:0 0 0.5em 0;box-sizing:border-box;border:1px solid #ccc;border-radius:2px;width:100%}.default.svelte-1ec4wqj:disabled{color:#ccc}
-.panel.svelte-6yfcjx:hover{background:var(--hoverBackground);color:var(--hoverColor)}
-.horizontal.svelte-osi0db{display:inline-block}.vertical.svelte-osi0db{display:block}
-.table-default.svelte-h8rqk6{width:100%;margin-bottom:1rem;color:#212529;border-collapse:collapse}.table-default.svelte-h8rqk6 .thead-default .th-default.svelte-h8rqk6{vertical-align:bottom;border-bottom:2px solid #dee2e6;font-weight:bold}.table-default.svelte-h8rqk6 .th-default.svelte-h8rqk6{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6;font-weight:normal}.th-default.svelte-h8rqk6{text-align:inherit}.table-default.svelte-h8rqk6 .tbody-default .tr-default.svelte-h8rqk6:hover{color:#212529;background-color:rgba(0,0,0,.075);cursor:pointer}
-.default.svelte-1q8lga0{font-family:inherit;font-size:inherit;padding:0.4em;margin:0 0 0.5em 0;box-sizing:border-box;border:1px solid #ccc;border-radius:2px;color:#333;background-color:#f4f4f4;outline:none}.default.svelte-1q8lga0:active{background-color:#ddd}.default.svelte-1q8lga0:focus{border-color:#666}
-
-/*# sourceMappingURL=bundle.css.map */
\ No newline at end of file
diff --git a/packages/bootstrap-components/public/bundle.css.map b/packages/bootstrap-components/public/bundle.css.map
deleted file mode 100644
index 20454673ef..0000000000
--- a/packages/bootstrap-components/public/bundle.css.map
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "version": 3,
- "file": "bundle.css",
- "sources": [
- "..\\src\\Test\\TestApp.svelte",
- "..\\src\\Grid.svelte",
- "..\\src\\Login.svelte",
- "..\\src\\Form.svelte",
- "..\\src\\Nav.svelte",
- "..\\src\\Textbox.svelte",
- "..\\src\\Panel.svelte",
- "..\\src\\StackPanel.svelte",
- "..\\src\\Table.svelte",
- "..\\src\\Button.svelte"
- ],
- "sourcesContent": [
- "\n\n{#await _appPromise}\nloading\n{:then _bb}\n\n\n
\n\n{/await}\n\n\n\n\n",
- "\r\n\r\n\r\n {#each children as child, index}\r\n
\r\n
\r\n {/each}\r\n
\r\n\r\n",
- "\n\n\n\n
\n\n {#if _logo}\n
\n
\n
\n {/if}\n\n
\n\n
\n \n
\n\n {#if incorrect}\n
\n Incorrect username or password\n
\n {/if}\n\n
\n\n
\n\n",
- "\n\n\n\n",
- "\r\n\r\n\r\n {#if !hideNavBar}\r\n
\r\n {#each items as navItem, index}\r\n
\r\n {navItem.title}\r\n
\r\n {/each}\r\n
\r\n {/if}\r\n {#each items as navItem, index}\r\n\r\n
\r\n
\r\n {/each}\r\n
\r\n\r\n\r\n\r\n",
- "\n\n{#if hideValue}\n\n{:else}\n\n{/if}\n\n",
- "\r\n\r\n\r\n {component && component._component ? \"\" : text}\r\n
\r\n\r\n\r\n",
- "\n\n\n\n {#if children}\n {#each children as child, index}\n
\n {/each}\n {/if}\n\n {#if data && data.length > 0}\n {#each data as child, index}\n
\n {/each}\n {/if}\n
\n\n",
- "\r\n\r\n \r\n \r\n \r\n {#each columns as col}\r\n {col.title} | \r\n {/each}\r\n
\r\n \r\n \r\n {#each data as row}\r\n \r\n {#each columns as col}\r\n {_bb.getStateOrValue(col.value, row)} | \r\n {/each}\r\n
\r\n {/each}\r\n \r\n
\r\n\r\n",
- "\n\n\n\n\n\n"
- ],
- "names": [],
- "mappings": "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"
-}
\ No newline at end of file
diff --git a/packages/bootstrap-components/public/bundle.js b/packages/bootstrap-components/public/bundle.js
deleted file mode 100644
index e406984883..0000000000
--- a/packages/bootstrap-components/public/bundle.js
+++ /dev/null
@@ -1,33412 +0,0 @@
-; (function (l, i, v, e) {
- v = l.createElement(i)
- v.async = 1
- v.src =
- "//" +
- (location.host || "localhost").split(":")[0] +
- ":35729/livereload.js?snipver=1"
- e = l.getElementsByTagName(i)[0]
- e.parentNode.insertBefore(v, e)
-})(document, "script")
-var app = (function () {
- "use strict"
-
- function noop() { }
- function assign(tar, src) {
- // @ts-ignore
- for (const k in src) tar[k] = src[k]
- return tar
- }
- function is_promise(value) {
- return (
- value && typeof value === "object" && typeof value.then === "function"
- )
- }
- function add_location(element, file, line, column, char) {
- element.__svelte_meta = {
- loc: { file, line, column, char },
- }
- }
- function run(fn) {
- return fn()
- }
- function blank_object() {
- return Object.create(null)
- }
- function run_all(fns) {
- fns.forEach(run)
- }
- function is_function(thing) {
- return typeof thing === "function"
- }
- function safe_not_equal(a, b) {
- return a != a
- ? b == b
- : a !== b || (a && typeof a === "object") || typeof a === "function"
- }
- function create_slot(definition, ctx, fn) {
- if (definition) {
- const slot_ctx = get_slot_context(definition, ctx, fn)
- return definition[0](slot_ctx)
- }
- }
- function get_slot_context(definition, ctx, fn) {
- return definition[1]
- ? assign({}, assign(ctx.$$scope.ctx, definition[1](fn ? fn(ctx) : {})))
- : ctx.$$scope.ctx
- }
- function get_slot_changes(definition, ctx, changed, fn) {
- return definition[1]
- ? assign(
- {},
- assign(
- ctx.$$scope.changed || {},
- definition[1](fn ? fn(changed) : {})
- )
- )
- : ctx.$$scope.changed || {}
- }
- function null_to_empty(value) {
- return value == null ? "" : value
- }
-
- function append(target, node) {
- target.appendChild(node)
- }
- function insert(target, node, anchor) {
- target.insertBefore(node, anchor || null)
- }
- function detach(node) {
- node.parentNode.removeChild(node)
- }
- function destroy_each(iterations, detaching) {
- for (let i = 0; i < iterations.length; i += 1) {
- if (iterations[i]) iterations[i].d(detaching)
- }
- }
- function element(name) {
- return document.createElement(name)
- }
- function svg_element(name) {
- return document.createElementNS("http://www.w3.org/2000/svg", name)
- }
- function text(data) {
- return document.createTextNode(data)
- }
- function space() {
- return text(" ")
- }
- function empty() {
- return text("")
- }
- function listen(node, event, handler, options) {
- node.addEventListener(event, handler, options)
- return () => node.removeEventListener(event, handler, options)
- }
- function attr(node, attribute, value) {
- if (value == null) node.removeAttribute(attribute)
- else node.setAttribute(attribute, value)
- }
- function children(element) {
- return Array.from(element.childNodes)
- }
- function claim_element(nodes, name, attributes, svg) {
- for (let i = 0; i < nodes.length; i += 1) {
- const node = nodes[i]
- if (node.nodeName === name) {
- for (let j = 0; j < node.attributes.length; j += 1) {
- const attribute = node.attributes[j]
- if (!attributes[attribute.name]) node.removeAttribute(attribute.name)
- }
- return nodes.splice(i, 1)[0] // TODO strip unwanted attributes
- }
- }
- return svg ? svg_element(name) : element(name)
- }
- function claim_text(nodes, data) {
- for (let i = 0; i < nodes.length; i += 1) {
- const node = nodes[i]
- if (node.nodeType === 3) {
- node.data = "" + data
- return nodes.splice(i, 1)[0]
- }
- }
- return text(data)
- }
- function claim_space(nodes) {
- return claim_text(nodes, " ")
- }
- function set_input_value(input, value) {
- if (value != null || input.value) {
- input.value = value
- }
- }
- function set_style(node, key, value, important) {
- node.style.setProperty(key, value, important ? "important" : "")
- }
- function toggle_class(element, name, toggle) {
- element.classList[toggle ? "add" : "remove"](name)
- }
- function custom_event(type, detail) {
- const e = document.createEvent("CustomEvent")
- e.initCustomEvent(type, false, false, detail)
- return e
- }
-
- let current_component
- function set_current_component(component) {
- current_component = component
- }
- function get_current_component() {
- if (!current_component)
- throw new Error(`Function called outside component initialization`)
- return current_component
- }
- // TODO figure out if we still want to support
- // shorthand events, or if we want to implement
- // a real bubbling mechanism
- function bubble(component, event) {
- const callbacks = component.$$.callbacks[event.type]
- if (callbacks) {
- callbacks.slice().forEach(fn => fn(event))
- }
- }
-
- const dirty_components = []
- const binding_callbacks = []
- const render_callbacks = []
- const flush_callbacks = []
- const resolved_promise = Promise.resolve()
- let update_scheduled = false
- function schedule_update() {
- if (!update_scheduled) {
- update_scheduled = true
- resolved_promise.then(flush)
- }
- }
- function add_render_callback(fn) {
- render_callbacks.push(fn)
- }
- function flush() {
- const seen_callbacks = new Set()
- do {
- // first, call beforeUpdate functions
- // and update components
- while (dirty_components.length) {
- const component = dirty_components.shift()
- set_current_component(component)
- update(component.$$)
- }
- while (binding_callbacks.length) binding_callbacks.pop()()
- // then, once components are updated, call
- // afterUpdate functions. This may cause
- // subsequent updates...
- for (let i = 0; i < render_callbacks.length; i += 1) {
- const callback = render_callbacks[i]
- if (!seen_callbacks.has(callback)) {
- callback()
- // ...so guard against infinite loops
- seen_callbacks.add(callback)
- }
- }
- render_callbacks.length = 0
- } while (dirty_components.length)
- while (flush_callbacks.length) {
- flush_callbacks.pop()()
- }
- update_scheduled = false
- }
- function update($$) {
- if ($$.fragment) {
- $$.update($$.dirty)
- run_all($$.before_update)
- $$.fragment.p($$.dirty, $$.ctx)
- $$.dirty = null
- $$.after_update.forEach(add_render_callback)
- }
- }
- const outroing = new Set()
- let outros
- function group_outros() {
- outros = {
- r: 0,
- c: [],
- p: outros, // parent group
- }
- }
- function check_outros() {
- if (!outros.r) {
- run_all(outros.c)
- }
- outros = outros.p
- }
- function transition_in(block, local) {
- if (block && block.i) {
- outroing.delete(block)
- block.i(local)
- }
- }
- function transition_out(block, local, detach, callback) {
- if (block && block.o) {
- if (outroing.has(block)) return
- outroing.add(block)
- outros.c.push(() => {
- outroing.delete(block)
- if (callback) {
- if (detach) block.d(1)
- callback()
- }
- })
- block.o(local)
- }
- }
-
- function handle_promise(promise, info) {
- const token = (info.token = {})
- function update(type, index, key, value) {
- if (info.token !== token) return
- info.resolved = key && { [key]: value }
- const child_ctx = assign(assign({}, info.ctx), info.resolved)
- const block = type && (info.current = type)(child_ctx)
- if (info.block) {
- if (info.blocks) {
- info.blocks.forEach((block, i) => {
- if (i !== index && block) {
- group_outros()
- transition_out(block, 1, 1, () => {
- info.blocks[i] = null
- })
- check_outros()
- }
- })
- } else {
- info.block.d(1)
- }
- block.c()
- transition_in(block, 1)
- block.m(info.mount(), info.anchor)
- flush()
- }
- info.block = block
- if (info.blocks) info.blocks[index] = block
- }
- if (is_promise(promise)) {
- const current_component = get_current_component()
- promise.then(
- value => {
- set_current_component(current_component)
- update(info.then, 1, info.value, value)
- set_current_component(null)
- },
- error => {
- set_current_component(current_component)
- update(info.catch, 2, info.error, error)
- set_current_component(null)
- }
- )
- // if we previously had a then/catch block, destroy it
- if (info.current !== info.pending) {
- update(info.pending, 0)
- return true
- }
- } else {
- if (info.current !== info.then) {
- update(info.then, 1, info.value, promise)
- return true
- }
- info.resolved = { [info.value]: promise }
- }
- }
-
- const globals = typeof window !== "undefined" ? window : global
- function mount_component(component, target, anchor) {
- const { fragment, on_mount, on_destroy, after_update } = component.$$
- fragment.m(target, anchor)
- // onMount happens before the initial afterUpdate
- add_render_callback(() => {
- const new_on_destroy = on_mount.map(run).filter(is_function)
- if (on_destroy) {
- on_destroy.push(...new_on_destroy)
- } else {
- // Edge case - component was destroyed immediately,
- // most likely as a result of a binding initialising
- run_all(new_on_destroy)
- }
- component.$$.on_mount = []
- })
- after_update.forEach(add_render_callback)
- }
- function destroy_component(component, detaching) {
- if (component.$$.fragment) {
- run_all(component.$$.on_destroy)
- component.$$.fragment.d(detaching)
- // TODO null out other refs, including component.$$ (but need to
- // preserve final state?)
- component.$$.on_destroy = component.$$.fragment = null
- component.$$.ctx = {}
- }
- }
- function make_dirty(component, key) {
- if (!component.$$.dirty) {
- dirty_components.push(component)
- schedule_update()
- component.$$.dirty = blank_object()
- }
- component.$$.dirty[key] = true
- }
- function init(
- component,
- options,
- instance,
- create_fragment,
- not_equal,
- prop_names
- ) {
- const parent_component = current_component
- set_current_component(component)
- const props = options.props || {}
- const $$ = (component.$$ = {
- fragment: null,
- ctx: null,
- // state
- props: prop_names,
- update: noop,
- not_equal,
- bound: blank_object(),
- // lifecycle
- on_mount: [],
- on_destroy: [],
- before_update: [],
- after_update: [],
- context: new Map(parent_component ? parent_component.$$.context : []),
- // everything else
- callbacks: blank_object(),
- dirty: null,
- })
- let ready = false
- $$.ctx = instance
- ? instance(component, props, (key, ret, value = ret) => {
- if ($$.ctx && not_equal($$.ctx[key], ($$.ctx[key] = value))) {
- if ($$.bound[key]) $$.bound[key](value)
- if (ready) make_dirty(component, key)
- }
- return ret
- })
- : props
- $$.update()
- ready = true
- run_all($$.before_update)
- $$.fragment = create_fragment($$.ctx)
- if (options.target) {
- if (options.hydrate) {
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
- $$.fragment.l(children(options.target))
- } else {
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
- $$.fragment.c()
- }
- if (options.intro) transition_in(component.$$.fragment)
- mount_component(component, options.target, options.anchor)
- flush()
- }
- set_current_component(parent_component)
- }
- let SvelteElement
- if (typeof HTMLElement !== "undefined") {
- SvelteElement = class extends HTMLElement {
- constructor() {
- super()
- this.attachShadow({ mode: "open" })
- }
- connectedCallback() {
- // @ts-ignore todo: improve typings
- for (const key in this.$$.slotted) {
- // @ts-ignore todo: improve typings
- this.appendChild(this.$$.slotted[key])
- }
- }
- attributeChangedCallback(attr, _oldValue, newValue) {
- this[attr] = newValue
- }
- $destroy() {
- destroy_component(this, 1)
- this.$destroy = noop
- }
- $on(type, callback) {
- // TODO should this delegate to addEventListener?
- const callbacks =
- this.$$.callbacks[type] || (this.$$.callbacks[type] = [])
- callbacks.push(callback)
- return () => {
- const index = callbacks.indexOf(callback)
- if (index !== -1) callbacks.splice(index, 1)
- }
- }
- $set() {
- // overridden by instance, if it has props
- }
- }
- }
- class SvelteComponent {
- $destroy() {
- destroy_component(this, 1)
- this.$destroy = noop
- }
- $on(type, callback) {
- const callbacks =
- this.$$.callbacks[type] || (this.$$.callbacks[type] = [])
- callbacks.push(callback)
- return () => {
- const index = callbacks.indexOf(callback)
- if (index !== -1) callbacks.splice(index, 1)
- }
- }
- $set() {
- // overridden by instance, if it has props
- }
- }
-
- function dispatch_dev(type, detail) {
- document.dispatchEvent(custom_event(type, detail))
- }
- function append_dev(target, node) {
- dispatch_dev("SvelteDOMInsert", { target, node })
- append(target, node)
- }
- function insert_dev(target, node, anchor) {
- dispatch_dev("SvelteDOMInsert", { target, node, anchor })
- insert(target, node, anchor)
- }
- function detach_dev(node) {
- dispatch_dev("SvelteDOMRemove", { node })
- detach(node)
- }
- function listen_dev(
- node,
- event,
- handler,
- options,
- has_prevent_default,
- has_stop_propagation
- ) {
- const modifiers =
- options === true
- ? ["capture"]
- : options
- ? Array.from(Object.keys(options))
- : []
- if (has_prevent_default) modifiers.push("preventDefault")
- if (has_stop_propagation) modifiers.push("stopPropagation")
- dispatch_dev("SvelteDOMAddEventListener", {
- node,
- event,
- handler,
- modifiers,
- })
- const dispose = listen(node, event, handler, options)
- return () => {
- dispatch_dev("SvelteDOMRemoveEventListener", {
- node,
- event,
- handler,
- modifiers,
- })
- dispose()
- }
- }
- function attr_dev(node, attribute, value) {
- attr(node, attribute, value)
- if (value == null)
- dispatch_dev("SvelteDOMRemoveAttribute", { node, attribute })
- else dispatch_dev("SvelteDOMSetAttribute", { node, attribute, value })
- }
- function prop_dev(node, property, value) {
- node[property] = value
- dispatch_dev("SvelteDOMSetProperty", { node, property, value })
- }
- function set_data_dev(text, data) {
- data = "" + data
- if (text.data === data) return
- dispatch_dev("SvelteDOMSetData", { node: text, data })
- text.data = data
- }
- class SvelteComponentDev extends SvelteComponent {
- constructor(options) {
- if (!options || (!options.target && !options.$$inline)) {
- throw new Error(`'target' is a required option`)
- }
- super()
- }
- $destroy() {
- super.$destroy()
- this.$destroy = () => {
- console.warn(`Component was already destroyed`) // eslint-disable-line no-console
- }
- }
- }
-
- const subscriber_queue = []
- /**
- * Create a `Writable` store that allows both updating and reading by subscription.
- * @param {*=}value initial value
- * @param {StartStopNotifier=}start start and stop notifications for subscriptions
- */
- function writable(value, start = noop) {
- let stop
- const subscribers = []
- function set(new_value) {
- if (safe_not_equal(value, new_value)) {
- value = new_value
- if (stop) {
- // store is ready
- const run_queue = !subscriber_queue.length
- for (let i = 0; i < subscribers.length; i += 1) {
- const s = subscribers[i]
- s[1]()
- subscriber_queue.push(s, value)
- }
- if (run_queue) {
- for (let i = 0; i < subscriber_queue.length; i += 2) {
- subscriber_queue[i][0](subscriber_queue[i + 1])
- }
- subscriber_queue.length = 0
- }
- }
- }
- }
- function update(fn) {
- set(fn(value))
- }
- function subscribe(run, invalidate = noop) {
- const subscriber = [run, invalidate]
- subscribers.push(subscriber)
- if (subscribers.length === 1) {
- stop = start(set) || noop
- }
- run(value)
- return () => {
- const index = subscribers.indexOf(subscriber)
- if (index !== -1) {
- subscribers.splice(index, 1)
- }
- if (subscribers.length === 0) {
- stop()
- stop = null
- }
- }
- }
- return { set, update, subscribe }
- }
-
- /* src\Textbox.svelte generated by Svelte v3.12.1 */
-
- const file = "src\\Textbox.svelte"
-
- // (32:0) {:else}
- function create_else_block(ctx) {
- var input, input_class_value
-
- const block = {
- c: function create() {
- input = element("input")
- this.h()
- },
-
- l: function claim(nodes) {
- input = claim_element(
- nodes,
- "INPUT",
- { class: true, type: true, value: true },
- false
- )
- var input_nodes = children(input)
-
- input_nodes.forEach(detach_dev)
- this.h()
- },
-
- h: function hydrate() {
- attr_dev(
- input,
- "class",
- (input_class_value =
- "" + null_to_empty(ctx.className) + " svelte-1ec4wqj")
- )
- attr_dev(input, "type", "text")
- input.value = ctx.actualValue
- add_location(input, file, 32, 0, 546)
- },
-
- m: function mount(target, anchor) {
- insert_dev(target, input, anchor)
- },
-
- p: function update(changed, ctx) {
- if (
- changed.className &&
- input_class_value !==
- (input_class_value =
- "" + null_to_empty(ctx.className) + " svelte-1ec4wqj")
- ) {
- attr_dev(input, "class", input_class_value)
- }
-
- if (changed.actualValue) {
- prop_dev(input, "value", ctx.actualValue)
- }
- },
-
- d: function destroy(detaching) {
- if (detaching) {
- detach_dev(input)
- }
- },
- }
- dispatch_dev("SvelteRegisterBlock", {
- block,
- id: create_else_block.name,
- type: "else",
- source: "(32:0) {:else}",
- ctx,
- })
- return block
- }
-
- // (28:0) {#if hideValue}
- function create_if_block(ctx) {
- var input, input_class_value, dispose
-
- const block = {
- c: function create() {
- input = element("input")
- this.h()
- },
-
- l: function claim(nodes) {
- input = claim_element(
- nodes,
- "INPUT",
- { class: true, type: true, value: true },
- false
- )
- var input_nodes = children(input)
-
- input_nodes.forEach(detach_dev)
- this.h()
- },
-
- h: function hydrate() {
- attr_dev(
- input,
- "class",
- (input_class_value =
- "" + null_to_empty(ctx.className) + " svelte-1ec4wqj")
- )
- attr_dev(input, "type", "password")
- input.value = ctx.actualValue
- add_location(input, file, 28, 0, 455)
- dispose = listen_dev(input, "change", ctx.change_handler)
- },
-
- m: function mount(target, anchor) {
- insert_dev(target, input, anchor)
- },
-
- p: function update(changed, ctx) {
- if (
- changed.className &&
- input_class_value !==
- (input_class_value =
- "" + null_to_empty(ctx.className) + " svelte-1ec4wqj")
- ) {
- attr_dev(input, "class", input_class_value)
- }
-
- if (changed.actualValue) {
- prop_dev(input, "value", ctx.actualValue)
- }
- },
-
- d: function destroy(detaching) {
- if (detaching) {
- detach_dev(input)
- }
-
- dispose()
- },
- }
- dispatch_dev("SvelteRegisterBlock", {
- block,
- id: create_if_block.name,
- type: "if",
- source: "(28:0) {#if hideValue}",
- ctx,
- })
- return block
- }
-
- function create_fragment(ctx) {
- var if_block_anchor
-
- function select_block_type(changed, ctx) {
- if (ctx.hideValue) return create_if_block
- return create_else_block
- }
-
- var current_block_type = select_block_type(null, ctx)
- var if_block = current_block_type(ctx)
-
- const block = {
- c: function create() {
- if_block.c()
- if_block_anchor = empty()
- },
-
- l: function claim(nodes) {
- if_block.l(nodes)
- if_block_anchor = empty()
- },
-
- m: function mount(target, anchor) {
- if_block.m(target, anchor)
- insert_dev(target, if_block_anchor, anchor)
- },
-
- p: function update(changed, ctx) {
- if (
- current_block_type ===
- (current_block_type = select_block_type(changed, ctx)) &&
- if_block
- ) {
- if_block.p(changed, ctx)
- } else {
- if_block.d(1)
- if_block = current_block_type(ctx)
- if (if_block) {
- if_block.c()
- if_block.m(if_block_anchor.parentNode, if_block_anchor)
- }
- }
- },
-
- i: noop,
- o: noop,
-
- d: function destroy(detaching) {
- if_block.d(detaching)
-
- if (detaching) {
- detach_dev(if_block_anchor)
- }
- },
- }
- dispatch_dev("SvelteRegisterBlock", {
- block,
- id: create_fragment.name,
- type: "component",
- source: "",
- ctx,
- })
- return block
- }
-
- function instance($$self, $$props, $$invalidate) {
- let { value = "", hideValue = false, className = "default", _bb } = $$props
-
- let actualValue = ""
-
- const writable_props = ["value", "hideValue", "className", "_bb"]
- Object.keys($$props).forEach(key => {
- if (!writable_props.includes(key) && !key.startsWith("$$"))
- console.warn(` was created with unknown prop '${key}'`)
- })
-
- function change_handler(event) {
- bubble($$self, event)
- }
-
- $$self.$set = $$props => {
- if ("value" in $$props) $$invalidate("value", (value = $$props.value))
- if ("hideValue" in $$props)
- $$invalidate("hideValue", (hideValue = $$props.hideValue))
- if ("className" in $$props)
- $$invalidate("className", (className = $$props.className))
- if ("_bb" in $$props) $$invalidate("_bb", (_bb = $$props._bb))
- }
-
- $$self.$capture_state = () => {
- return { value, hideValue, className, _bb, actualValue }
- }
-
- $$self.$inject_state = $$props => {
- if ("value" in $$props) $$invalidate("value", (value = $$props.value))
- if ("hideValue" in $$props)
- $$invalidate("hideValue", (hideValue = $$props.hideValue))
- if ("className" in $$props)
- $$invalidate("className", (className = $$props.className))
- if ("_bb" in $$props) $$invalidate("_bb", (_bb = $$props._bb))
- if ("actualValue" in $$props)
- $$invalidate("actualValue", (actualValue = $$props.actualValue))
- }
-
- $$self.$$.update = ($$dirty = { _bb: 1, value: 1 }) => {
- if ($$dirty._bb || $$dirty.value) {
- {
- if (_bb && value._isstate) {
- _bb.store.subscribe(s => {
- $$invalidate(
- "actualValue",
- (actualValue = _bb.store.getValue(s, value))
- )
- })
- }
- }
- }
- }
-
- return {
- value,
- hideValue,
- className,
- _bb,
- actualValue,
- change_handler,
- }
- }
-
- class Textbox extends SvelteComponentDev {
- constructor(options) {
- super(options)
- init(this, options, instance, create_fragment, safe_not_equal, [
- "value",
- "hideValue",
- "className",
- "_bb",
- ])
- dispatch_dev("SvelteRegisterComponent", {
- component: this,
- tagName: "Textbox",
- options,
- id: create_fragment.name,
- })
-
- const { ctx } = this.$$
- const props = options.props || {}
- if (ctx._bb === undefined && !("_bb" in props)) {
- console.warn(" was created without expected prop '_bb'")
- }
- }
-
- get value() {
- throw new Error(
- ": Props cannot be read directly from the component instance unless compiling with 'accessors: true' or ''"
- )
- }
-
- set value(value) {
- throw new Error(
- ": Props cannot be set directly on the component instance unless compiling with 'accessors: true' or ''"
- )
- }
-
- get hideValue() {
- throw new Error(
- ": Props cannot be read directly from the component instance unless compiling with 'accessors: true' or ''"
- )
- }
-
- set hideValue(value) {
- throw new Error(
- ": Props cannot be set directly on the component instance unless compiling with 'accessors: true' or ''"
- )
- }
-
- get className() {
- throw new Error(
- ": Props cannot be read directly from the component instance unless compiling with 'accessors: true' or ''"
- )
- }
-
- set className(value) {
- throw new Error(
- ": Props cannot be set directly on the component instance unless compiling with 'accessors: true' or ''"
- )
- }
-
- get _bb() {
- throw new Error(
- ": Props cannot be read directly from the component instance unless compiling with 'accessors: true' or ''"
- )
- }
-
- set _bb(value) {
- throw new Error(
- ": Props cannot be set directly on the component instance unless compiling with 'accessors: true' or ''"
- )
- }
- }
-
- /* src\Form.svelte generated by Svelte v3.12.1 */
-
- const file$1 = "src\\Form.svelte"
-
- function get_each_context(ctx, list, i) {
- const child_ctx = Object.create(ctx)
- child_ctx.child = list[i]
- child_ctx.index = i
- return child_ctx
- }
-
- // (30:4) {#each formControls as child, index}
- function create_each_block(ctx) {
- var div0,
- t0_value = ctx.labels[ctx.index] + "",
- t0,
- t1,
- div1,
- index = ctx.index
-
- const assign_div1 = () => ctx.div1_binding(div1, index)
- const unassign_div1 = () => ctx.div1_binding(null, index)
-
- const block = {
- c: function create() {
- div0 = element("div")
- t0 = text(t0_value)
- t1 = space()
- div1 = element("div")
- this.h()
- },
-
- l: function claim(nodes) {
- div0 = claim_element(nodes, "DIV", { class: true }, false)
- var div0_nodes = children(div0)
-
- t0 = claim_text(div0_nodes, t0_value)
- div0_nodes.forEach(detach_dev)
- t1 = claim_space(nodes)
-
- div1 = claim_element(nodes, "DIV", { class: true }, false)
- var div1_nodes = children(div1)
-
- div1_nodes.forEach(detach_dev)
- this.h()
- },
-
- h: function hydrate() {
- attr_dev(div0, "class", "label svelte-m9d6ue")
- add_location(div0, file$1, 30, 4, 559)
- attr_dev(div1, "class", "control svelte-m9d6ue")
- add_location(div1, file$1, 31, 4, 604)
- },
-
- m: function mount(target, anchor) {
- insert_dev(target, div0, anchor)
- append_dev(div0, t0)
- insert_dev(target, t1, anchor)
- insert_dev(target, div1, anchor)
- assign_div1()
- },
-
- p: function update(changed, new_ctx) {
- ctx = new_ctx
- if (
- changed.labels &&
- t0_value !== (t0_value = ctx.labels[ctx.index] + "")
- ) {
- set_data_dev(t0, t0_value)
- }
-
- if (index !== ctx.index) {
- unassign_div1()
- index = ctx.index
- assign_div1()
- }
- },
-
- d: function destroy(detaching) {
- if (detaching) {
- detach_dev(div0)
- detach_dev(t1)
- detach_dev(div1)
- }
-
- unassign_div1()
- },
- }
- dispatch_dev("SvelteRegisterBlock", {
- block,
- id: create_each_block.name,
- type: "each",
- source: "(30:4) {#each formControls as child, index}",
- ctx,
- })
- return block
- }
-
- function create_fragment$1(ctx) {
- var div, div_class_value
-
- let each_value = ctx.formControls
-
- let each_blocks = []
-
- for (let i = 0; i < each_value.length; i += 1) {
- each_blocks[i] = create_each_block(get_each_context(ctx, each_value, i))
- }
-
- const block = {
- c: function create() {
- div = element("div")
-
- for (let i = 0; i < each_blocks.length; i += 1) {
- each_blocks[i].c()
- }
- this.h()
- },
-
- l: function claim(nodes) {
- div = claim_element(nodes, "DIV", { class: true }, false)
- var div_nodes = children(div)
-
- for (let i = 0; i < each_blocks.length; i += 1) {
- each_blocks[i].l(div_nodes)
- }
-
- div_nodes.forEach(detach_dev)
- this.h()
- },
-
- h: function hydrate() {
- attr_dev(
- div,
- "class",
- (div_class_value =
- "form-root " + ctx.containerClass + " svelte-m9d6ue")
- )
- add_location(div, file$1, 28, 0, 473)
- },
-
- m: function mount(target, anchor) {
- insert_dev(target, div, anchor)
-
- for (let i = 0; i < each_blocks.length; i += 1) {
- each_blocks[i].m(div, null)
- }
- },
-
- p: function update(changed, ctx) {
- if (changed.htmlElements || changed.labels || changed.formControls) {
- each_value = ctx.formControls
-
- let i
- for (i = 0; i < each_value.length; i += 1) {
- const child_ctx = get_each_context(ctx, each_value, i)
-
- if (each_blocks[i]) {
- each_blocks[i].p(changed, child_ctx)
- } else {
- each_blocks[i] = create_each_block(child_ctx)
- each_blocks[i].c()
- each_blocks[i].m(div, null)
- }
- }
-
- for (; i < each_blocks.length; i += 1) {
- each_blocks[i].d(1)
- }
- each_blocks.length = each_value.length
- }
-
- if (
- changed.containerClass &&
- div_class_value !==
- (div_class_value =
- "form-root " + ctx.containerClass + " svelte-m9d6ue")
- ) {
- attr_dev(div, "class", div_class_value)
- }
- },
-
- i: noop,
- o: noop,
-
- d: function destroy(detaching) {
- if (detaching) {
- detach_dev(div)
- }
-
- destroy_each(each_blocks, detaching)
- },
- }
- dispatch_dev("SvelteRegisterBlock", {
- block,
- id: create_fragment$1.name,
- type: "component",
- source: "",
- ctx,
- })
- return block
- }
-
- function instance$1($$self, $$props, $$invalidate) {
- let { containerClass = "", formControls = [], _bb } = $$props
-
- let htmlElements = {}
- let labels = {}
-
- const writable_props = ["containerClass", "formControls", "_bb"]
- Object.keys($$props).forEach(key => {
- if (!writable_props.includes(key) && !key.startsWith("$$"))
- console.warn(`