@financial-times/n-myft-ui 30.3.0 → 30.4.2
Sign up to get free protection for your applications and to get access to all the features.
- package/.babelrc +9 -0
- package/.circleci/config.yml +3 -0
- package/.eslintignore +1 -0
- package/CODEOWNERS +1 -0
- package/Makefile +3 -0
- package/build-state/npm-shrinkwrap.json +17081 -8036
- package/components/jsx/csrf-token/input.jsx +28 -0
- package/components/jsx/follow-plus-instant-alerts/follow-plus-instant-alerts.jsx +95 -0
- package/components/jsx/follow-plus-instant-alerts/index.js +76 -0
- package/components/jsx/follow-plus-instant-alerts/main.scss +64 -0
- package/components/jsx/preferences-modal/index.js +182 -0
- package/components/jsx/preferences-modal/main.scss +59 -0
- package/components/jsx/preferences-modal/preferences-modal.jsx +53 -0
- package/demos/app.js +5 -1
- package/demos/fixtures/jsx/follow-plus-instant-alerts.json +4 -0
- package/demos/fixtures/jsx/preferences-modal.json +3 -0
- package/demos/src/demo.scss +2 -0
- package/demos/templates/demo.html +78 -28
- package/myft/main.scss +3 -0
- package/myft/ui/myft-buttons/do-form-submit.js +9 -2
- package/package.json +7 -2
package/.babelrc
ADDED
package/.circleci/config.yml
CHANGED
@@ -77,6 +77,9 @@ jobs:
|
|
77
77
|
- run:
|
78
78
|
name: Install project dependencies
|
79
79
|
command: make install
|
80
|
+
- run:
|
81
|
+
name: Transpile JSX to JS
|
82
|
+
command: make transpile-jsx
|
80
83
|
- run:
|
81
84
|
name: shared-helper / generate-build-state-artifacts
|
82
85
|
command: .circleci/shared-helpers/helper-generate-build-state-artifacts
|
package/.eslintignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
dist/
|
package/CODEOWNERS
CHANGED