Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
6744207
📜 Update licence date
rowanc1 Apr 2, 2020
2afc4d7
📦 Initial store implementation
rowanc1 Apr 2, 2020
d5c6d7a
🌀 Refactor createVariable
rowanc1 Apr 2, 2020
723479b
🥿 Flatten the state to remove scopes
rowanc1 Apr 2, 2020
e46f54c
🆙 Update functions for variables and testing
rowanc1 Apr 3, 2020
555d687
🆕Components state
rowanc1 Apr 3, 2020
56fa55d
⚙️Introduce component evaluation + cleaning 🧹
rowanc1 Apr 4, 2020
0306452
🗑Remove component actions
rowanc1 Apr 4, 2020
2cf1e37
🔄Remove UpdateVariableValue action
rowanc1 Apr 4, 2020
8789fbb
👯‍♂️Return state if it is the same for 🚫♾
rowanc1 Apr 4, 2020
314764b
🤬Fighting with typescript generics, now works! 🚀
rowanc1 Apr 6, 2020
b74295b
🖋Initial refactor of basic ink-components
rowanc1 Apr 6, 2020
28b50bb
📦Updates to store
rowanc1 Apr 7, 2020
4b40309
🖋New components and InkVar updates
rowanc1 Apr 7, 2020
947b312
🆕🖋New components: Checkbox, Radio, Select, Input
rowanc1 Apr 8, 2020
0649409
🔀Move folders and package names
rowanc1 Apr 8, 2020
c2d13ff
⚙️Call go() by default on the webpack build
rowanc1 Apr 8, 2020
78a2dfa
📜Ink Article layout elements, equations and code
rowanc1 Apr 9, 2020
fac3468
🧩Adjust runtime to be used with other packages.
rowanc1 Apr 14, 2020
1a2ef69
🖋Dynamic and range updates, some packaging 📦
rowanc1 Apr 14, 2020
d10caf3
📜Ink article updates to equation and packaging 📦
rowanc1 Apr 14, 2020
1581998
💄Minor css updates
rowanc1 Apr 15, 2020
e1e6a7d
📝Readme for @iooxa/runtime
rowanc1 Apr 15, 2020
3879d0b
🗑Delete runtime package - @iooxa/runtime
rowanc1 Apr 15, 2020
ef41b89
🗑Remove ink-basic and move to repo
rowanc1 Apr 15, 2020
47f8d68
🗑Remove ink-article
rowanc1 Apr 15, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
dist/
node_modules/


packages/ink-article/styles/index.css
packages/ink-article/styles/index.css.map
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2019 Rowan Cockett
Copyright (c) 2020 Rowan Cockett

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Ink Components

[![Ink Components on npm](https://img.shields.io/npm/v/ink-components.svg)](https://www.npmjs.com/package/ink-components)
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/rowanc1/ink-components/blob/master/LICENSE)
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/ink-components/ink-components/blob/master/LICENSE)
[![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://www.webcomponents.org/element/ink-components)


Expand Down
2 changes: 1 addition & 1 deletion src/InkDynamicProps.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function getPropFunction(self, propName){
self['_' + propName + 'Function'] = undefined;
return undefined;
}
if(self._xlimFunction === undefined){
if (self['_' + propName + 'Function'] === undefined){
// create the function if it isn't there already
// console.log(propName, 'Creating function', functionString);
self['_' + propName + 'Function'] = getIFrameFunction(self.iframe, functionString);
Expand Down